Skip to content

Commit

Permalink
feat: Add SearchBar to the storage page
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroWave022 committed Aug 22, 2024
1 parent 7102bca commit 6fbe0ac
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/app/[locale]/(default)/storage/page.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import { getTranslations, unstable_setRequestLocale } from 'next-intl/server';

import { SearchBar } from '@/components/ui/SearchBar';

export async function generateMetadata({
params: { locale },
}: {
Expand All @@ -18,5 +20,10 @@ export default function StoragePage({
params: { locale: string };
}) {
unstable_setRequestLocale(locale);
return <div>This should be the storage page</div>;
return (
<>
<h1>Storage</h1>
<SearchBar />
</>
);
}

0 comments on commit 6fbe0ac

Please sign in to comment.