Consistent page titles

This commit is contained in:
Tom Moor
2019-01-06 14:14:44 -08:00
parent 56bda12192
commit c970cddd14
10 changed files with 58 additions and 50 deletions

View File

@ -0,0 +1,13 @@
// @flow
import * as React from 'react';
import { Helmet } from 'react-helmet';
function PageTitle({ title }: { title: string }) {
return (
<Helmet>
<title>{title} Outline</title>
</Helmet>
);
}
export default PageTitle;