1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-05-29 22:37:44 +02:00
Files
.profile/packages/ui/src/Home/About/About.stories.tsx

17 lines
320 B
TypeScript

import type { Meta, StoryObj } from "@storybook/react"
import { About as AboutComponent } from "./About.tsx"
const meta = {
title: "Home/About",
component: AboutComponent,
} satisfies Meta<typeof AboutComponent>
export default meta
type Story = StoryObj<typeof meta>
export const About: Story = {
args: {},
}