This repository has been archived on 2024-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
Théo LUDWIG 791551a4e8
All checks were successful
Chromatic / chromatic (push) Successful in 2m44s
CI / ci (push) Successful in 4m0s
CI / commitlint (push) Successful in 14s
chore: simplify TypeScript config
2024-08-15 14:14:21 +01:00

17 lines
329 B
TypeScript

import type { Meta, StoryObj } from "@storybook/react"
import { Header as HeaderComponent } from "./Header.tsx"
const meta = {
title: "Layout/Header",
component: HeaderComponent,
} satisfies Meta<typeof HeaderComponent>
export default meta
type Story = StoryObj<typeof meta>
export const Header: Story = {
args: {},
}