diff --git a/src/containers/NotFound.js b/src/containers/NotFound.js new file mode 100644 index 0000000..6b005ac --- /dev/null +++ b/src/containers/NotFound.js @@ -0,0 +1,25 @@ +import React, { Component } from 'react'; +import { Link } from 'react-router-dom'; +import Card from '../components/Card'; + +class NotFound extends Component { + constructor(props) { + super(props); + + this.state = {}; + } + + render() { + return ( +
+ Go to home} + /> +
+ ); + } +} + +export default NotFound; \ No newline at end of file