1
0
mirror of https://github.com/theoludwig/theoludwig.git synced 2025-12-12 20:46:52 +01:00
Files
.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: {},
}