corolla
v1.1.1
Published
[](https://www.npmjs.com/package/corolla) [](https://www.typescriptlang.org/) [ => (
<div>
<Link to="/">Home</Link>
<Link to="/about">About</Link>
<h1>Home</h1>
</div>
)
const About = () => (
<div>
<Link to="/">Home</Link>
<Link to="/about">About</Link>
<h1>About</h1>
</div>
)
const NotFound = () => (
<div>
404 not found
</div>
)
const routes = [
{
path: '/',
component: Home,
},
{
path: '/about',
component: About,
},
{
path: '**',
component: NotFound,
},
]
const App = () => <Router routes={routes} />
ReactDOM.render(<App />, document.getElementById('root'))