// Pass props to your component by passing an `args` object to your story // // ```tsx // export const Primary: Story = { // args: { // propName: propValue // } // } // ``` // // See https://storybook.js.org/docs/react/writing-stories/args. import type { Meta, StoryObj } from '@storybook/react' import FooterBar from './FooterBar' const meta: Meta = { component: FooterBar, tags: ['autodocs'], } export default meta type Story = StoryObj export const Primary: Story = {}