[#812,package][xl]: initial versioning of the package
This commit is contained in:
28
packages/components/stories/Thing.stories.tsx
Normal file
28
packages/components/stories/Thing.stories.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import React from 'react';
|
||||
import { Meta, Story } from '@storybook/react';
|
||||
import { Thing, Props } from '../src';
|
||||
|
||||
const meta: Meta = {
|
||||
title: 'Welcome',
|
||||
component: Thing,
|
||||
argTypes: {
|
||||
children: {
|
||||
control: {
|
||||
type: 'text',
|
||||
},
|
||||
},
|
||||
},
|
||||
parameters: {
|
||||
controls: { expanded: true },
|
||||
},
|
||||
};
|
||||
|
||||
export default meta;
|
||||
|
||||
const Template: Story<Props> = args => <Thing {...args} />;
|
||||
|
||||
// By passing using the Args format for exported stories, you can control the props for a component for reuse in a test
|
||||
// https://storybook.js.org/docs/react/workflows/unit-testing
|
||||
export const Default = Template.bind({});
|
||||
|
||||
Default.args = {};
|
||||
Reference in New Issue
Block a user