import React from 'react'; import '../static/stylesheets/globals.scss'; export const NotFoundPage = (props) => { if (props.location.pathname === '/') { return null; } return (

Uhm... WHAT?

Looks like you're lost

404 Page not found

); }; export default NotFoundPage;