mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-05-29 22:37:44 +02:00
17 lines
328 B
TypeScript
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: {},
|
|
}
|