2022-04-29 00:36:05 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
|
|
import Footer from '../components/ui/Footer/Footer';
|
|
|
|
|
|
|
|
export default {
|
2022-05-13 03:59:40 +03:00
|
|
|
title: 'owncast/Layout/Footer',
|
2022-04-29 00:36:05 +03:00
|
|
|
component: Footer,
|
|
|
|
parameters: {},
|
|
|
|
} as ComponentMeta<typeof Footer>;
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-Footer
|
|
|
|
const Template: ComponentStory<typeof Footer> = args => <Footer {...args} />;
|
|
|
|
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
export const Example = Template.bind({});
|
|
|
|
Example.args = {
|
|
|
|
version: 'v1.2.3',
|
|
|
|
};
|