mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 04:40:37 +03:00
33 lines
932 B
TypeScript
33 lines
932 B
TypeScript
import React from 'react';
|
|
import { ComponentStory, ComponentMeta } from '@storybook/react';
|
|
import SingleFollower from '../components/ui/Followers/Follower';
|
|
import SingleFollowerMock from './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',
|
|
},
|
|
};
|