import * as React from 'react' import { ChakraProvider, extendTheme } from '@chakra-ui/react' import * as theme from 'config/chakra.config' /** @type { import("@storybook/csf").GlobalTypes } */ export const globalTypes = {} /** * An example, no-op storybook decorator. Use a function like this to create decorators. * @param { import("@storybook/addons").StoryFn} StoryFn * @param { import("@storybook/addons").StoryContext} context * @returns StoryFn, unmodified. */ const _exampleDecorator = (StoryFn, _context) => { return } const extendedTheme = extendTheme(theme) const withChakra = (StoryFn) => { return ( ) } export const decorators = [withChakra]