Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-06 17:57:59 +02:00
parent bb001148a5
commit 8d7a8c70f0
73 changed files with 1508 additions and 6817 deletions

View File

@ -0,0 +1,19 @@
import { Meta } from '@storybook/react/types-6-0'
import React from 'react'
import Component from '.'
import Text from '../Text'
export default {
title: 'DZEIO/Container',
component: Component,
argTypes: {
title: { control: 'text'}
},
parameters: {
layout: 'fullscreen'
}
} as Meta
export const Basic = (args: any) => (
<Component {...args}><Text>Test</Text></Component>
)