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.
33 lines
931 B
33 lines
931 B
import React from 'react'; |
|
import { ComponentStory, ComponentMeta } from '@storybook/react'; |
|
import SingleFollower from './SingleFollower'; |
|
import SingleFollowerMock from '../../../../stories/assets/mocks/single-follower.png'; |
|
|
|
export default { |
|
title: 'owncast/Components/Followers/Single Follower', |
|
component: SingleFollower, |
|
parameters: { |
|
design: { |
|
type: 'image', |
|
url: SingleFollowerMock, |
|
}, |
|
docs: { |
|
description: { |
|
component: `Represents a single follower.`, |
|
}, |
|
}, |
|
}, |
|
} as ComponentMeta<typeof SingleFollower>; |
|
|
|
const Template: ComponentStory<typeof SingleFollower> = args => <SingleFollower {...args} />; |
|
|
|
export const Example = Template.bind({}); |
|
Example.args = { |
|
follower: { |
|
name: 'John Doe', |
|
description: 'User', |
|
username: '@account@domain.tld', |
|
image: 'https://avatars0.githubusercontent.com/u/1234?s=460&v=4', |
|
link: 'https://yahoo.com', |
|
}, |
|
};
|
|
|