mirror of
https://github.com/theoludwig/theoludwig.git
synced 2025-09-11 23:09:22 +02:00
17 lines
349 B
TypeScript
17 lines
349 B
TypeScript
import type { Meta, StoryObj } from "@storybook/nextjs"
|
|
|
|
import { Portfolio as PortfolioComponent } from "./Portfolio.tsx"
|
|
|
|
const meta = {
|
|
title: "Home/Portfolio",
|
|
component: PortfolioComponent,
|
|
} satisfies Meta<typeof PortfolioComponent>
|
|
|
|
export default meta
|
|
|
|
type Story = StoryObj<typeof meta>
|
|
|
|
export const Portfolio: Story = {
|
|
args: {},
|
|
}
|