Ignore:
Timestamp:
01/15/21 04:14:15 (3 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_projects.js

    r4302312 red3f5c4  
    1010                <Container>
    1111                    <h1>Projects for you!</h1>
    12                     {props.userProfile.projects.map(item =>{
     12                    {props.userProfile.projects.map((item,index) =>{
    1313                        return <Projects
    14                             title={item.title}
    15                             description={item.description}
    16                             accountName={item.accountName}
    17                             accountEmail={item.accountEmail}
    18                             skills={item.skillsRequired}
    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.