import type { FC } from 'react' import type { {{name.pascalCase}}LayoutProps } from './types/{{name.kebabCase}}.interface' import styles from './styles/{{name.kebabCase}}.module.css' /** * Layout {{name.pascalCase}}. */ export const {{name.pascalCase}}Layout: FC<{{name.pascalCase}}LayoutProps> = ({ children }) => { return (
{children}
) }