We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6434681 commit 820d6b3Copy full SHA for 820d6b3
web/src/app/(content)/search/[search]/page.tsx
web/src/app/(content)/search/page.tsx
@@ -0,0 +1,16 @@
1
+import { SearchPageComponent } from '@web/src/modules/search/components/SearchPageComponent';
2
+
3
+interface SearchPageProps {
4
+ searchParams: {
5
+ query?: string;
6
+ page?: string;
7
+ limit?: string;
8
+ category?: string;
9
+ };
10
+}
11
12
+export default async function SearchPage({ searchParams }: SearchPageProps) {
13
+ console.log(searchParams);
14
15
+ return <SearchPageComponent />;
16
0 commit comments