10 lines
248 B
TypeScript
10 lines
248 B
TypeScript
|
|
import DocumentDetail from "@/components/main/content/document-detail";
|
||
|
|
|
||
|
|
interface DetailInfoProps {
|
||
|
|
params: { id: string };
|
||
|
|
}
|
||
|
|
|
||
|
|
export default async function DetailInfo({ params }: DetailInfoProps) {
|
||
|
|
return <DocumentDetail id={params.id} />;
|
||
|
|
}
|