2.1.1 • Published 10 months ago

reverouter v2.1.1

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

npm.io

Rever(r)outer 📦

The router for ReverUI

Install it using

$ npm i reverouter

Example

// main.ts

import { $UI } from "reverui"; 
import { $lazy, $Router } from "reverouter";

$Router($UI ,{
	"/": () => import("./Banner"), // Normal Route
	"/todo": $lazy(() => import("./Todo")), // Lazy Route
	"/counter": $lazy(() => import("./Counter")), // Lazy Route
	"/counter-with-hook": $lazy(() => import("./CounterWithHook")), // Lazy Route
});
2.1.1

10 months ago

2.1.0

10 months ago

2.0.0

10 months ago

1.6.0

10 months ago

1.5.1

10 months ago

1.5.0

10 months ago

1.0.0

10 months ago