1.0.0 • Published 5 months ago

react-module-example v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

react-module-example

Installation

Install react-module-example with npm

  npm i react-module-example
import { SmartNav } from 'react-module-example';
import { BrowserRouter } from 'react-router-dom';

const LINKS = [{
        display: "Users",
        url: "/1",
    },
    {
        display: "Products",
        url: "/2",
    },
    {
        display: "Demo",
        url: "/3",
    }]
export const Example = () => 
        <>
            <BrowserRouter>
                <SmartNav 
                    bg='#0b4a91' 
                    font=''Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif' 
                    nav = LINKS
                />
            </BrowserRouter>
        </>

Props

PropsTypesDescription
bgStrBackground colour for navbar with '#xxxxx'
fontStrString of React native Fonts
navObject ArrayRequires display and url fields