abhijithvijayan / react-minimal-side-navigation

Minimal side navigation component for React
https://codesandbox.io/s/react-minimal-side-navigation-example-y299d?file=/src/components/NavSidebar.jsx
MIT License
67 stars 28 forks source link

Keep subNav open #20

Open Chris221 opened 3 years ago

Chris221 commented 3 years ago

It would be amazing to see an option to have the subNav always open with something like this:

{
    title: 'loc',
    itemId: '#loc',
    expanded: true,
    subNav: [
        ...list.map(p => ({
            title: p.title,
            itemId: p.url,
        }))
    ],
}