UNPKG

nestjs-tsx-views

Version:

Server-side JSX/TSX rendering for your NestJS application 🚀

7 lines (6 loc) • 220 B
import { ReactElement, ReactNode } from 'react'; export interface MainLayoutProps { title: string; children: ReactNode; } export declare const MainLayout: ({ title, children, }: MainLayoutProps) => ReactElement;