diff --git a/.storybook/preview.tsx b/.storybook/preview.tsx index 5dbc839..c0bd264 100644 --- a/.storybook/preview.tsx +++ b/.storybook/preview.tsx @@ -1,30 +1,32 @@ import { DevTools } from "jotai-devtools"; import React from "react"; +import { type Preview } from "@storybook/react"; -export const parameters = { - controls: { - matchers: { - color: /(background|color)$/i, - date: /Date$/, +export default { + parameters: { + controls: { + matchers: { + color: /(background|color)$/i, + date: /Date$/, + }, }, - }, - options: { - storySort: { - order: ["Intro", "*", "Changelog"], + options: { + storySort: { + order: ["Intro", "*", "Changelog"], + }, }, - }, - docs: { - toc: { - headingSelector: "h2, h3", + docs: { + toc: { + headingSelector: "h2, h3", + }, }, }, -}; - -export const decorators = [ - (Story) => ( - <> - - - - ), -]; + decorators: [ + (Story) => ( + <> + + + + ), + ], +} satisfies Preview;