source: client_app/src/components/work/user_internships.js@ ed3f5c4

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

more groundwork

  • Property mode set to 100644
File size: 810 bytes
Line 
1import {Container} from "semantic-ui-react";
2import {Redirect} from "react-router-dom";
3import React from "react";
4import Internships from "../item_components/internship_component";
5
6const UserInternships = (props) =>{
7 if(props.userProfile.type==="USER"){
8 if(props.userProfile.email!=null){
9 return(
10 <Container>
11 <h1>Internships for you!</h1>
12 {props.userProfile.internships.map((item, index) =>{
13 return <Internships
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 UserInternships;
Note: See TracBrowser for help on using the repository browser.