You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
594 B
21 lines
594 B
import React from 'react'; |
|
import { ComponentStory, ComponentMeta } from '@storybook/react'; |
|
import FollowModal from '../components/modals/FollowModal'; |
|
|
|
const Example = () => ( |
|
<div> |
|
<FollowModal /> |
|
</div> |
|
); |
|
|
|
export default { |
|
title: 'owncast/Modals/Follow', |
|
component: FollowModal, |
|
parameters: {}, |
|
} as ComponentMeta<typeof FollowModal>; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
const Template: ComponentStory<typeof FollowModal> = args => <Example />; |
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars |
|
export const Basic = Template.bind({});
|
|
|