mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-10-11 17:06:21 +02:00
17 lines
349 B
TypeScript
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: {},
|
|
}
|