import NextHead from 'next/head'; import React from 'react'; export default class Head extends React.PureComponent<{ title: string }> { render() { return (
{this.props.title} {this.props.children}
); } }