import React from "react"; import { Meta, StoryObj } from "@storybook/react-webpack5"; import { Button } from "./Button"; const meta: Meta = { component: Button, title: "Primitives/Button", argTypes: {}, }; export default meta; type Story = StoryObj; export const Variants: Story = { render: (args) => (
), args: {}, };