source: client_app/src/components/profiles/team_profile.js@ c9fa474

Last change on this file since c9fa474 was c9fa474, checked in by i-ina <76742075+i-ina@…>, 3 years ago

cleaning

  • Property mode set to 100644
File size: 525 bytes
Line 
1import React from 'react';
2import {Container, Header, Table, Item, Button} from 'semantic-ui-react'
3import {Link} from "react-router-dom";
4
5const TeamProfile = (props) =>{
6 return(
7 <Container textAlign="left">
8 <Header>Team:</Header>
9 <h3>{props.data.name}</h3>
10 <h2>E-mail: {props.data.email}</h2>
11 <h3>Members: {props.data.members}</h3>
12 <Button primary as={Link} to={"/profile/edit"}>Edit</Button>
13 </Container>
14 );
15}
16
17export default TeamProfile;
Note: See TracBrowser for help on using the repository browser.