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