mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-02-08 21:59:39 +01:00
17 lines
344 B
TypeScript
17 lines
344 B
TypeScript
import type { Meta, StoryObj } from "@storybook/react"
|
|
|
|
import { Portfolio as PortfolioComponent } from "./Portfolio"
|
|
|
|
const meta = {
|
|
title: "Home/Portfolio",
|
|
component: PortfolioComponent,
|
|
} satisfies Meta<typeof PortfolioComponent>
|
|
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Portfolio: Story = {
|
|
args: {},
|
|
}
|