This commit is contained in:
Norbert de Langen 2022-10-27 17:00:20 +02:00
parent 51922388b6
commit 2353040163
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
import type { ArgsEnhancer } from '@storybook/types';
import { addActionsFromArgTypes, inferActionsFromArgTypesRegex } from './addArgsHelpers';
export const argsEnhancers = [addActionsFromArgTypes, inferActionsFromArgTypesRegex];
export const argsEnhancers: ArgsEnhancer[] = [
addActionsFromArgTypes,
inferActionsFromArgTypesRegex,
];

View File

@ -1,5 +1,5 @@
import globalThis from 'global';
import { withActions } from '@storybook/actions/decorator';
import { withActions } from '@storybook/addon-actions/decorator';
export default {
component: globalThis.Components.Button,