source: client_app/src/components/work/user_projects.js

Last change on this file was 1b4b6ff, checked in by Vzdra <vladko.zdravkovski@…>, 3 years ago

bugfix and logging

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