mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
12 lines
248 B
TypeScript
12 lines
248 B
TypeScript
import { DocumentPageView } from './document-page-view';
|
|
|
|
export type DocumentPageProps = {
|
|
params: {
|
|
id: string;
|
|
};
|
|
};
|
|
|
|
export default function DocumentPage({ params }: DocumentPageProps) {
|
|
return <DocumentPageView params={params} />;
|
|
}
|