Skip to content

Commit

Permalink
New : 검색페이지 라우트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jobkaeHenry committed Nov 6, 2023
1 parent 138a7ec commit 40ac454
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions client/src/app/search/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
const SearchPage = ({
searchParams,
}: {
searchParams?: { [key: string]: string | string[] | undefined };
}) => {
return <div>{searchParams?.keyword}</div>;
};

export default SearchPage;

0 comments on commit 40ac454

Please sign in to comment.