UNPKG

generator-prospa

Version:

Create fully working Single Page Applications using various technology combinations

16 lines (11 loc) 393 B
import React from 'react' import { Link } from 'react-router-dom' import Page from '../Page' const Home = () => <Page header="Home"> <p> ReactJS Single Page Application. </p> <span><Link className="App-link" to="/users">Users</Link> | <Link className="App-link" to="/no/such/route">No Such Route</Link></span> </Page> export default Home