Changeset 48e4a3e for client_app/src/components/data
- Timestamp:
- 01/12/21 21:55:23 (4 years ago)
- Branches:
- master
- Children:
- 2c06dce
- Parents:
- 96eb8bc
- Location:
- client_app/src/components/data/components
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
client_app/src/components/data/components/profiles/company_profile.js
r96eb8bc r48e4a3e 10 10 <h2>E-mail: {props.data.email}</h2> 11 11 <h3>Address: {props.data.address.country} {props.data.address.city} {props.data.address.street}</h3> 12 <Button primary as={Link} to={"/ company/edit"}>Edit</Button>12 <Button primary as={Link} to={"/profile/edit"}>Edit</Button> 13 13 </Container> 14 14 ); -
client_app/src/components/data/components/profiles/team_profile.js
r96eb8bc r48e4a3e 10 10 <h2>E-mail: {props.data.email}</h2> 11 11 <h3>Members: {props.data.members}</h3> 12 <Button primary as={Link} to={"/ team/edit"}>Edit</Button>12 <Button primary as={Link} to={"/profile/edit"}>Edit</Button> 13 13 </Container> 14 14 );
Note:
See TracChangeset
for help on using the changeset viewer.