2023-11-07 06:35:05 +03:00
|
|
|
import { Meta } from '@storybook/react';
|
2022-09-07 10:00:28 +03:00
|
|
|
import { SingleFollower } from './SingleFollower';
|
2022-09-03 21:38:52 +03:00
|
|
|
import SingleFollowerMock from '../../../../stories/assets/mocks/single-follower.png';
|
2022-04-29 00:36:05 +03:00
|
|
|
|
2023-11-07 06:35:05 +03:00
|
|
|
const meta = {
|
2022-05-18 00:24:48 +03:00
|
|
|
title: 'owncast/Components/Followers/Single Follower',
|
2022-05-04 00:17:05 +03:00
|
|
|
component: SingleFollower,
|
2022-05-20 23:12:16 +03:00
|
|
|
parameters: {
|
|
|
|
design: {
|
|
|
|
type: 'image',
|
|
|
|
url: SingleFollowerMock,
|
|
|
|
},
|
|
|
|
docs: {
|
|
|
|
description: {
|
|
|
|
component: `Represents a single follower.`,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2023-11-07 06:35:05 +03:00
|
|
|
} satisfies Meta<typeof SingleFollower>;
|
2022-04-29 00:36:05 +03:00
|
|
|
|
2023-11-07 06:35:05 +03:00
|
|
|
export default meta;
|
2022-04-29 00:36:05 +03:00
|
|
|
|
2023-11-07 06:35:05 +03:00
|
|
|
export const 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',
|
|
|
|
},
|
2022-04-29 00:36:05 +03:00
|
|
|
},
|
|
|
|
};
|