Skip to content

Commit 990c625

Browse files
committed
feat(containers): Add a title to the Not Found page
1 parent 3720269 commit 990c625

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/containers/NotFound/NotFound.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
import React from 'react';
2+
import Helmet from 'react-helmet';
23

34
export default function NotFound() {
45
return (
56
<div className="container">
7+
<Helmet title="Not Found"/>
8+
69
<h1>Doh! 404!</h1>
710
<p>These are <em>not</em> the droids you are looking for!</p>
811
</div>

0 commit comments

Comments
 (0)