import React from 'react'; import {Container, Header, Table, Item, Button, Segment} from 'semantic-ui-react' import {Link} from "react-router-dom"; const CompanyProfile = (props) =>{ return(
Welcome!
Company
Company Name:
{props.data.name}
Company e-mail:
{props.data.email}
Address: {props.data.address.country}-{props.data.address.city}-{props.data.address.street}
); } export default CompanyProfile;