Skip to content

Commit

Permalink
fixed issue #59: Added projects, followers and following links to pro…
Browse files Browse the repository at this point in the history
…file dropdown menu (#86)
  • Loading branch information
NdibeRaymond authored Jan 22, 2021
1 parent 7c717d3 commit ee19d3e
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions zubhub_frontend/zubhub/src/views/PageWrapper.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,48 @@ function PageWrapper(props) {
</Typography>
</a>
</MenuItem>
<MenuItem>
<Link
className={classes.textDecorationNone}
to={`/creators/${props.auth.username}/projects`}
>
<Typography
variant="subtitle2"
color="textPrimary"
component="span"
>
Projects
</Typography>
</Link>
</MenuItem>
<MenuItem>
<Link
className={classes.textDecorationNone}
to={`/creators/${props.auth.username}/followers`}
>
<Typography
variant="subtitle2"
color="textPrimary"
component="span"
>
Followers
</Typography>
</Link>
</MenuItem>
<MenuItem>
<Link
className={classes.textDecorationNone}
to={`/creators/${props.auth.username}/following`}
>
<Typography
variant="subtitle2"
color="textPrimary"
component="span"
>
Following
</Typography>
</Link>
</MenuItem>
<MenuItem>
<Link
className={classes.textDecorationNone}
Expand Down

0 comments on commit ee19d3e

Please sign in to comment.