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