diff options
Diffstat (limited to 'src/components/navigation/DynamicTitle.js')
| -rw-r--r-- | src/components/navigation/DynamicTitle.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/components/navigation/DynamicTitle.js b/src/components/navigation/DynamicTitle.js deleted file mode 100644 index f1cdb19..0000000 --- a/src/components/navigation/DynamicTitle.js +++ /dev/null @@ -1,17 +0,0 @@ -import React, { Component } from 'react'; -import PropTypes from 'prop-types'; -import Helmet from 'react-helmet'; - -export default class DynamicTitle extends Component { - render() { - return( - <Helmet> - <title>{this.props.title ? this.props.title : "404 | Fuwn"}</title> - </Helmet> - ) - } -} - -DynamicTitle.propTypes = { - title: PropTypes.string -}
\ No newline at end of file |