index.stories.ts 695 Bytes
import type { Meta, StoryObj } from "@storybook/react";
// import { userEvent, within, fn } from '@storybook/test';
import <feewee></feewee> from '../index';

const meta: Meta<typeof <feewee></feewee>> = {
  title: "<feewee></feewee>",
  component: <feewee></feewee>,
  tags: ["autodocs"],
  parameters: {
    layout: "centered",
  },
  args: {
  },
  argTypes: {
  },
};

export default meta;
type Story = StoryObj<typeof <feewee></feewee>>;

/*
 *👇 Render functions are a framework specific feature to allow you control on how the component renders.
 * See https://storybook.js.org/docs/api/csf
 * to learn how to use render functions.
 */
export const Primary: Story = {
  args: {
  },
};