mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 08:55:24 +00:00
8162d052bf
# Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Manual QA for all new/changed functionality --------- Co-authored-by: Gabriel Hernandez <ghernandez345@gmail.com>
16 lines
302 B
TypeScript
16 lines
302 B
TypeScript
import { Meta, StoryObj } from "@storybook/react";
|
|
|
|
import Graphic from "./";
|
|
|
|
const meta: Meta<typeof Graphic> = {
|
|
title: "Components/Graphic",
|
|
component: Graphic,
|
|
args: { name: "empty-queries" },
|
|
};
|
|
|
|
export default meta;
|
|
|
|
type Story = StoryObj<typeof Graphic>;
|
|
|
|
export const Basic: Story = {};
|