import React from 'react'; import {Container, Header, Table, Item, Button, Segment} from 'semantic-ui-react' import {Link} from "react-router-dom"; const UserDetails = (props) =>{ return(
Welcome
{props.data.name} {props.data.surname}
Mail: {props.data.email}
Retained Skills: Skills to Learn: {props.data.retained.map((value, index) => { return {value.name} })} {props.data.toLearn.map((value, index) => { return {value.name} })}