mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
17 lines
497 B
TypeScript
17 lines
497 B
TypeScript
import React from 'react';
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
import Footer from '../components/ui/Footer/Footer';
|
|
|
|
export default {
|
|
title: 'owncast/Layout/Footer',
|
|
component: Footer,
|
|
parameters: {},
|
|
} as ComponentMeta<typeof 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',
|
|
};
|