Skip to content

v0.5.0

Pre-release
Pre-release
Compare
Choose a tag to compare
@timdorr timdorr released this 10 Nov 16:56
· 9143 commits to main since this release

We brought back <Routes/>.

// 0.4.x
var routes = (
  <Route handler={App} location="history">
    <Route name="about" handler="about"/>
  </Route>
);

// 0.5.x
var routes = (
  <Routes location="history">
    <Route handler={App}>
      <Route name="about" handler="about"/>
    </Route>
  </Routes>
);

Changes

  • 5af49d4 [changed] Split <Routes> component from <Route>