Minimal Routing for React
npm install react-roadway --save
const Home = createRoute((props) => (
<div>
<h1>Home</h1>
</div>
));
const About = createRoute((props) => (
<div>
<h1>About</h1>
</div>
));
const App = createRouter(() => (
<div>
<nav>
<ul>
<li><Link href="/">Home</Link></li>
<li><Link href="/about">About</Link></li>
</ul>
</nav>
<Home match="/" />
<About match="/about" />
</div>
));
render(<App />);
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
MIT Copyright (c) 2017 Opentrace