react-hash-router
A hash router for React
Install in your project
npm i react-hash-routing
Quick start
import React from 'react';import HashRouter Route from 'react-hash-routing'; Component ... { switch childKey case 'home': break case 'contacts': break case 'customPage': break default: break } { return <HashRouter => <Route ='home' ='#/'>Home</Route> <Route ='contacts' ='#/contacts'>Contacts</Route> <Route ='contacts' ='#/contacts'> <YourCustomComponent /> </Route> </HashRouter> }
Build sources
npm i
Develop mode
npm run develop