SI detail page cretaed
This commit is contained in:
10
src/app/[locale]/si/[id]/page.tsx
Normal file
10
src/app/[locale]/si/[id]/page.tsx
Normal file
@@ -0,0 +1,10 @@
|
||||
import SiDetailPage from '@/widgets/detail/SiDetailPage';
|
||||
|
||||
interface Props {
|
||||
params: Promise<{ id: string }>;
|
||||
}
|
||||
|
||||
export default async function SiDetail({ params }: Props) {
|
||||
const { id } = await params;
|
||||
return <SiDetailPage id={Number(id)} />;
|
||||
}
|
||||
Reference in New Issue
Block a user