chore: format codebase and move SectionAccordion to entities/Section
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import type { Meta, StoryObj } from '@storybook/nextjs-vite'
|
||||
import { MobileNav } from './MobileNav'
|
||||
import type { Meta, StoryObj } from '@storybook/nextjs-vite';
|
||||
import { MobileNav } from './MobileNav';
|
||||
|
||||
// MobileNav is lg:hidden — it renders only on mobile viewports.
|
||||
// Use the viewport toolbar in Storybook to switch to a mobile size to see it.
|
||||
@@ -11,11 +11,11 @@ const meta: Meta<typeof MobileNav> = {
|
||||
defaultViewport: 'mobile1',
|
||||
},
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
export default meta
|
||||
export default meta;
|
||||
|
||||
type Story = StoryObj<typeof MobileNav>
|
||||
type Story = StoryObj<typeof MobileNav>;
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
@@ -25,4 +25,4 @@ export const Default: Story = {
|
||||
{ id: 'contact', label: 'Contact', number: '03' },
|
||||
],
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user