1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-10-11 17:06:21 +02:00
Files
.profile/packages/ui/src/Home/Interests/Interests.stories.tsx

17 lines
349 B
TypeScript

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