mirror of
https://github.com/outline/outline.git
synced 2026-06-28 02:34:23 +03:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
// @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;
|