import React from "react"; import { Link } from "react-router-dom"; import { Container } from "semantic-ui-react"; const NoMatch = ({ location }) => (

Page not found!

No match found for {location.pathname}

Go to the home page →

); export default NoMatch;