mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 07:43:16 +10:00
Add a template page view to allow users to see more details about a template at a glance.
16 lines
361 B
TypeScript
16 lines
361 B
TypeScript
import { setupI18nSSR } from '@documenso/lib/client-only/providers/i18n.server';
|
|
|
|
import { TemplatePageView } from './template-page-view';
|
|
|
|
export type TemplatePageProps = {
|
|
params: {
|
|
id: string;
|
|
};
|
|
};
|
|
|
|
export default async function TemplatePage({ params }: TemplatePageProps) {
|
|
await setupI18nSSR();
|
|
|
|
return <TemplatePageView params={params} />;
|
|
}
|