We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59758a9 commit 0caa902Copy full SHA for 0caa902
src/pages/main/Node.tsx
@@ -34,6 +34,14 @@ const Board = () => {
34
35
<button
36
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
+ }}
45
>
46
<Icon
47
name={isStamp ? 'Stamp' : 'PressStamp'}
0 commit comments