import type { Meta } from "@storybook/react"; import { Box } from "../box"; import { Card } from "../card"; import { theme, lightTheme } from "../theme"; const Template = () => { return (

Override Darkmode

Responds to Dark Stays Light
); }; const meta: Meta> = { title: "Override Darkmode", component: Template, }; export const Default = {}; export default meta;