source: client_app/src/components/work/user_projects.js@ 6729ba5

Last change on this file since 6729ba5 was ed3f5c4, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

more groundwork

  • Property mode set to 100644
File size: 826 bytes
Line 
1import {Card, Container} from "semantic-ui-react";
2import {Redirect} from "react-router-dom";
3import React from "react";
4import Projects from "../item_components/project_component";
5
6const UserProjects = (props) =>{
7 if(props.userProfile.type==="USER"){
8 if(props.userProfile.email!=null){
9 return(
10 <Container>
11 <h1>Projects for you!</h1>
12 {props.userProfile.projects.map((item,index) =>{
13 return <Projects
14 key={item.id}
15 index={index}
16 item={item}
17 />})
18 }
19 </Container>
20 );
21 }
22 }
23
24 return (
25 <Redirect to={"/login"}/>
26 );
27}
28
29export default UserProjects;
Note: See TracBrowser for help on using the repository browser.