1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
import { ComponentMeta, ComponentStory } from '@storybook/react';
import Overview from './overview';
/**
* Overview - Storybook Meta
*/
export default {
title: 'Organisms/Layout/Overview',
component: Overview,
argTypes: {
cover: {
description: 'The overview cover.',
table: {
category: 'Options',
},
type: {
name: 'object',
required: false,
value: {},
},
},
meta: {
description: 'The overview metadata.',
type: {
name: 'object',
required: true,
value: {},
},
},
},
} as ComponentMeta<typeof Overview>;
const Template: ComponentStory<typeof Overview> = (args) => (
<Overview {...args} />
);
const cover = {
alt: 'picture',
height: 480,
src: 'http://placeimg.com/640/480/cats',
width: 640,
unoptimized: true,
};
const meta = {
publication: { name: 'Illo ut odio:', value: 'Sequi et excepturi' },
update: {
name: 'Perspiciatis vel laudantium:',
value: 'Dignissimos ratione veritatis',
},
};
/**
* Overview Stories - Default
*/
export const Default = Template.bind({});
Default.args = {
cover,
meta,
};
/**
* Overview Stories - With cover
*/
export const WithCover = Template.bind({});
WithCover.args = {
cover,
meta,
};
|