import React from 'react'; import { Navbar } from './Navbar'; export interface PageProps { title?: string } export class Page extends React.PureComponent { render() { return ( {this.props.children} ); } componentDidMount() { this.updateTitle(); } componentDidUpdate() { this.updateTitle(); } updateTitle() { const { title } = this.props; if (title !== undefined) window.document.title = title + ' - Guesstimate'; } }