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