// @flow import type {Element} from 'React' import Link from 'next/link' import Head from 'next/head' type Props = { children?: Element, title?: string } export default ({children, title = 'This is the default title'}: Props) => (
{title}
{children}
)