import type { Meta, StoryObj } from '@storybook/react'; import { Footer } from '@/components/footer'; const meta: Meta = { title: 'Footer', component: Footer, decorators: [ (Story) => (
), ], }; export default meta; type Story = StoryObj; export const Normal: Story = {};