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