mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
12 lines
213 B
TypeScript
12 lines
213 B
TypeScript
import React from "react";
|
|
import {Meta} from "@storybook/react";
|
|
|
|
import {Badge} from "../src";
|
|
|
|
export default {
|
|
title: "Display/Badge",
|
|
component: Badge,
|
|
} as Meta;
|
|
|
|
export const Default = () => <Badge />;
|