Files
owncast/web/components/ui/Footer/Footer.stories.tsx
T
Gabe KangasandGitHub cc9286416c Update storybook to v9 (#4645)
* chore: Update storybook to v9

* Pin next-export-i18n + remove outdated mock library

* Replace old mocking library with MSW

* Resolve knip unused code warnings
2025-10-20 21:26:32 -07:00

25 lines
448 B
TypeScript

import { StoryFn, Meta } from '@storybook/nextjs';
import { RecoilRoot } from 'recoil';
import { Footer } from './Footer';
const meta = {
title: 'owncast/Layout/Footer',
component: Footer,
} satisfies Meta<typeof Footer>;
export default meta;
const Template: StoryFn<typeof Footer> = args => (
<RecoilRoot>
<Footer {...args} />
</RecoilRoot>
);
export const Example = {
render: Template,
args: {
version: 'v1.2.3',
},
};