Files
Nachhilfesystem24/web/src/components/Hero/Hero.stories.tsx
2024-10-04 16:46:22 +02:00

27 lines
498 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 Hero from './Hero'
const meta: Meta<typeof Hero> = {
component: Hero,
tags: ['autodocs'],
}
export default meta
type Story = StoryObj<typeof Hero>
export const Primary: Story = {}