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 {Snippet} from "../src";
|
|
|
|
export default {
|
|
title: "Snippet",
|
|
component: Snippet,
|
|
} as Meta;
|
|
|
|
export const Default = () => <Snippet />;
|