diff --git a/client/src/components/User.tsx b/client/src/components/User.tsx index c3d31e87..7adc7011 100644 --- a/client/src/components/User.tsx +++ b/client/src/components/User.tsx @@ -1,6 +1,8 @@ import React from 'react'; +import { Link } from 'react-router-dom'; import styled from 'styled-components'; import Profile from './Profile'; +import { PAGE_PATHS } from 'Constants'; const ProfileDiv = styled.div` display: block; @@ -53,15 +55,17 @@ interface IProps { const User = ({ email, thumbnail, nickname, status }: IProps) => { return ( - - - - - {nickname} - - - - + + + + + + {nickname} + + + + + ); };