mirror of
https://github.com/owncast/owncast.git
synced 2024-11-25 22:31:09 +03:00
4f078e1ee4
* Migrate web action-buttons directory to CSF3 notation * Migrate web chat directory to CSF3 notation * Migrate web common directory to CSF3 notation * Migrate web layout directory to CSF3 notation * Migrate web modals directory to CSF3 notation * Migrate web ui directory to CSF3 notation * Migrate web video directory to CSF3 notation * Migrate web stories directory to CSF3 notation
25 lines
465 B
TypeScript
25 lines
465 B
TypeScript
import { StoryFn, Meta } from '@storybook/react';
|
|
import { RecoilRoot } from 'recoil';
|
|
import { Footer } from './Footer';
|
|
|
|
const meta = {
|
|
title: 'owncast/Layout/Footer',
|
|
component: Footer,
|
|
parameters: {},
|
|
} 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',
|
|
},
|
|
};
|