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 3ae6d2fac3
Some checks failed
Chromatic / chromatic (push) Failing after 42s
CI / ci (push) Successful in 2m44s
CI / commitlint (push) Successful in 14s
chore: initial commit
2024-07-24 12:35:33 +02:00

19 lines
358 B
TypeScript

import type { Meta, StoryObj } from "@storybook/react"
import { Footer as FooterComponent } from "./Footer"
const meta = {
title: "User Interface/Footer",
component: FooterComponent,
} satisfies Meta<typeof FooterComponent>
export default meta
type Story = StoryObj<typeof meta>
export const Footer: Story = {
args: {
version: "1.0.0",
},
}