-
: undefined} />
-
- {children}
-
+
+
+ {children}
);
diff --git a/src/components/pages/group-search/index.tsx b/src/components/pages/group-list/group-search-bar/index.tsx
similarity index 65%
rename from src/components/pages/group-search/index.tsx
rename to src/components/pages/group-list/group-search-bar/index.tsx
index b63a47f9..7f2fce38 100644
--- a/src/components/pages/group-search/index.tsx
+++ b/src/components/pages/group-list/group-search-bar/index.tsx
@@ -4,7 +4,7 @@ import { useRouter, useSearchParams } from 'next/navigation';
import { SearchBar } from '@/components/shared';
-export const GroupSearch = () => {
+export const GroupSearchBar = () => {
const router = useRouter();
const searchParams = useSearchParams();
const currentKeyword = searchParams.get('keyword') || '';
@@ -20,11 +20,13 @@ export const GroupSearch = () => {
};
return (
-
+
+
+
);
};