diff options
| author | Fuwn <[email protected]> | 2021-01-21 19:19:46 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-01-21 19:19:46 -0800 |
| commit | 64537f8850fe00b759f258999f33ffd0ad8c08d6 (patch) | |
| tree | 8c8a5f32a75f1318c49ca33b0e279780c9896008 /src/components/navigation/DynamicTitle.js | |
| parent | :sa: (diff) | |
| download | me-64537f8850fe00b759f258999f33ffd0ad8c08d6.tar.xz me-64537f8850fe00b759f258999f33ffd0ad8c08d6.zip | |
:star:
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 |