mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
11 lines
337 B
TypeScript
11 lines
337 B
TypeScript
import React from 'react';
|
|
|
|
import type { TemplatePageViewProps } from './template-page-view';
|
|
import { TemplatePageView } from './template-page-view';
|
|
|
|
type TemplatePageProps = Pick<TemplatePageViewProps, 'params'>;
|
|
|
|
export default function TemplatePage({ params }: TemplatePageProps) {
|
|
return <TemplatePageView params={params} />;
|
|
}
|