27 lines
523 B
TypeScript
27 lines
523 B
TypeScript
// 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<typeof FooterBar> = {
|
|
component: FooterBar,
|
|
tags: ['autodocs'],
|
|
}
|
|
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof FooterBar>
|
|
|
|
export const Primary: Story = {}
|