Refactored collections store and layout components
This commit is contained in:
11
frontend/components/PageTitle/PageTitle.js
Normal file
11
frontend/components/PageTitle/PageTitle.js
Normal file
@ -0,0 +1,11 @@
|
||||
// @flow
|
||||
import React from 'react';
|
||||
import Helmet from 'react-helmet';
|
||||
|
||||
type Props = {
|
||||
title: string,
|
||||
};
|
||||
|
||||
const PageTitle = ({ title }: Props) => <Helmet title={`${title} - Atlas`} />;
|
||||
|
||||
export default PageTitle;
|
Reference in New Issue
Block a user