import { Meta, StoryObj } from "@storybook/react"; import Viewer from "../Viewer"; import Sun from "./Sun"; type Story = StoryObj; export default { title: "Sun", component: Sun, } as Meta; export const Basic: Story = { args: { glowFactor: 2, show: true }, render: args => ( ), };