mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-02-08 21:59:39 +01:00
17 lines
320 B
TypeScript
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: {},
|
|
}
|