Skip to content

Commit

Permalink
feat: sidebar에 router추가 (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lavegaa committed Dec 6, 2020
1 parent 44cd570 commit 7af817b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Sidebar/Sidebar.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export default function Sidebar() {
const handleClick = (value) => {
setClick(value);
history.push(value === 0 ? '/questionlist'
: value === 1 ? 'group-study' : 'mypage');
: value === 1 ? '/group-study' : '/mypage');
};

function hoverActive() {
Expand Down

0 comments on commit 7af817b

Please sign in to comment.