mobx-route
v0.20.1
Published
Simple and lightweight typed router
Downloads
572
Maintainers
Readme
mobx-route
🚀 Simple and lightweight typed MobX router 🚀
Uses path-to-regexp power
Read the docs →
import { createRoute } from "mobx-route";
const userDetails = createRoute("/users/:id");
await userDetails.open({ id: 1 }); // path params are required
userDetails.isOpened; // true;Contribution Guide
Want to contribute ? Follow this guide
