Skip to content

Commit 8d1fc65

Browse files
authored
Merge pull request sendgrid#3732 from sendgrid/404
404 component wip
2 parents c68c316 + 368b018 commit 8d1fc65

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/pages/404.jsx

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import React from 'react';
2+
3+
4+
class NotFound extends React.Component {
5+
render() {
6+
return (
7+
<div className="containert">
8+
<h1>404 not found :(</h1>
9+
</div>
10+
);
11+
}
12+
}
13+
14+
export default NotFound;

0 commit comments

Comments
 (0)