Ignore:
Timestamp:
01/15/21 04:14:15 (4 years ago)
Author:
Vzdra <vladko.zdravkovski@…>
Branches:
master
Children:
6729ba5
Parents:
4302312
Message:

more groundwork

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client_app/src/components/work/user_internships.js

    r4302312 red3f5c4  
    1010                <Container>
    1111                <h1>Internships for you!</h1>
    12                 {props.userProfile.internships.map(item =>{
     12                {props.userProfile.internships.map((item, index) =>{
    1313                    return <Internships
    14                         title={item.title}
    15                         description={item.description}
    16                         accountName={item.accountName}
    17                         accountEmail={item.accountEmail}
    18                         skills={item.skillsTrained}
    19                         type={props.userProfile.type}
     14                        key={item.id}
     15                        index={index}
     16                        item={item}
    2017                    />})
    2118                }
Note: See TracChangeset for help on using the changeset viewer.