detail page done

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-03-31 16:47:18 +05:00
parent 0495f16e5e
commit 3fe54b5c3c
40 changed files with 2004 additions and 241 deletions

View 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} />;
}