UNPKG

@tikpage/reactjs-popup

Version:

React Popup Component - Modals,Tooltips and Menus —  All in one

15 lines (12 loc) 275 B
import React from 'react'; import Layout from '../components/Layout'; const NotFoundPage = () => ( <Layout> <div> <h1>NOT FOUND</h1> <br /> <p> 404 - Oh no's! We couldn't find that page :( </p> </div> </Layout> ); export default NotFoundPage;