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

17 lines
328 B
TypeScript

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