Skip to content

Commit

Permalink
#131 빈 태그 -> Fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaeyeon1 committed Dec 14, 2023
1 parent 1ddf86c commit 693ff10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion client/src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { useRouter } from 'next/navigation';
import { Fragment } from 'react';

function Collect() {
const router = useRouter();
router.replace('/i/flow/login');

return <></>;
return <Fragment></Fragment>;
}

export default Collect;

0 comments on commit 693ff10

Please sign in to comment.