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