| 12345678910111213141516171819202122232425262728293031323334353637 |
- export const parameters = {
- actions: { argTypesRegex: '^on[A-Z].*' },
- controls: {
- matchers: {
- color: /(background|color)$/i,
- date: /Date$/,
- },
- },
- options: {
- storySort: {
- order: [
- 'Docs',
- [
- 'Intro',
- 'Getting Started',
- [
- 'Quick Start',
- 'Schemes',
- 'Configs'
- ]
- ],
- 'Components',
- [
- 'Text',
- 'Button',
- 'TextInput',
- '*'
- ],
- '*'
- ]
- }
- }
- };
- export const decorators = [
- (Story) => <Story/>
- ];
|