UNPKG

generator-prospa

Version:

Create fully working Single Page Applications using various technology combinations

14 lines (9 loc) 264 B
import React from 'react' import { Link } from 'react-router-dom' import Page from '../Page' const NotFound = () => ( <Page header="Not Found"> <span><Link className="App-link" to="/">Home</Link></span> </Page> ) export default NotFound