import classNames from 'classnames'; import VerticalNav from './VerticalNav'; import VerticalNavItem from './VerticalNavItem'; import type { Meta, StoryObj } from '@storybook/react'; const meta: Meta = { title: 'Components/VerticalNav', component: VerticalNav, args: { collapsed: false, nested: false, }, subcomponents: { VerticalNavItem }, }; export default meta; type Story = StoryObj; const Link = ({ className, ...props }) => ( {props.children} ); export const DefaultVerticalNav: Story = { args: { selectedId: 'team', ariaNavLabel: 'Primary', items: [ { label: 'Parent link', url: 'javascript:void(0);', id: 'parentlink1', }, { label: 'Current page', selected: true, items: [ { id: 'childlink1', label: 'Child link', url: 'javascript:void(0);', }, { label: 'Child link', selected: true, component: Link, items: [ { id: 'grandchildlink1', label: 'Grandchild link', url: 'javascript:void(0);', }, { id: 'grandchildlink2', label: 'Grandchild link', url: 'javascript:void(0);', selected: true, }, ], }, { id: 'childlink3', label: 'Child link', url: 'javascript:void(0);', }, ], }, { label: 'Parent link', url: 'javascript:void(0);', id: 'parentlink2', }, ], }, };