type Props = { title: string, children: JSX.Element, }; const Page = ({ title, children }: Props) => ( <div> <h1>{title}</h1> {children} </div> );