1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-09-15 07:43:29 +02:00
Files
.profile/packages/ui/src/Home/About/About.stories.tsx

17 lines
321 B
TypeScript

import type { Meta, StoryObj } from "@storybook/nextjs"
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: {},
}