import React, { ReactNode } from 'react' import Head from 'next/head' type Props = { children?: ReactNode title?: string } const Layout = ({ children, title = 'This is the default title' }: Props) => (
{title}
{children}
) export default Layout