mirror of
https://github.com/dzeiocom/components.git
synced 2025-06-08 00:59:54 +00:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import { Meta } from '@storybook/react/types-6-0'
|
|
import React from 'react'
|
|
import Component from '.'
|
|
|
|
export default {
|
|
title: 'DZEIO/Button',
|
|
component: Component
|
|
} as Meta
|
|
|
|
export const Basic = (args: any) => <Component {...args}>Button</Component>
|