import type { Meta, StoryObj } from '@storybook/react'; import { Sidebar } from './Sidebar'; import { BrowserRouter } from 'react-router-dom'; const meta = { title: 'Components/Layout/Sidebar', component: Sidebar, tags: ['autodocs'], decorators: [ (Story) => ( Main Content Area Resize the viewport to see responsive behavior. ), ], parameters: { layout: 'fullscreen', }, } satisfies Meta; export default meta; type Story = StoryObj; export const Default: Story = { args: { currentView: 'dashboard', }, }; export const StudioActive: Story = { args: { currentView: 'studio', }, };
Resize the viewport to see responsive behavior.