Skip to content

Commit 0caa902

Browse files
committed
feat: 리워드 페이지로 이동하는 버튼 클릭 핸들러 추가
1 parent 59758a9 commit 0caa902

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/pages/main/Node.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ const Board = () => {
3434

3535
<button
3636
className={cn('absolute bottom-0 right-0', isStamp && 'p-[2.5rem]')}
37+
onClick={() => {
38+
//TODO: 리워드 페이지로 이동
39+
// router.push({
40+
// pathname: '/main/riward',
41+
// query: { label },
42+
// });
43+
console.log('리워드 페이지로 이동');
44+
}}
3745
>
3846
<Icon
3947
name={isStamp ? 'Stamp' : 'PressStamp'}

0 commit comments

Comments
 (0)