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