An open API service indexing awesome lists of open source software.

https://github.com/pr0h0/react-hoouter

React module from routing
https://github.com/pr0h0/react-hoouter

react react-hooks react-router router

Last synced: 4 months ago
JSON representation

React module from routing

Awesome Lists containing this project

README

          

# React router hooks

React router module using react hooks

```
import {Router, Route, Link, Redirect } from 'react-hoouter';

function App(){
return (

// match only '/' path
// match any path starting with "/user*"
// Match any route // renders always
Login // Change route when clicked to '/login'
// Force redirect to "/notFound" when rendered // use with caution

)}
```