Pathpunk
My awesome module Note: This does not replace conventional react routers. Use this when you want a fairly small nagigation system on the same page
Install
npm install pathpunk
Usage
import Pathpunk from 'pathpunk';
const App = () => {
return (
<MiniRouter
name="hobbies"
routes={[
{ path: '/', component: <HobbiesComponent /> },
{ path: '/hobbies', component: <HobbiesComponent /> },
{
path: '/hobbies/[hobbyName]',
component: <SingleHobbyComponent />,
},
{
path: '/hobbies/:hobbyName',
component: <SingleHobbyComponent />,
},
]}
/>
);
};
API
MiniRouter(props: MiniRouterProps): JSX.Element
props
Type: MiniRouterProps
Lorem ipsum.
name
Type: string
routes
Type: Array
Lorem ipsum.