mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
26 lines
431 B
TypeScript
26 lines
431 B
TypeScript
const App = `import {Snippet} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Snippet
|
|
tooltipProps={{
|
|
color: "foreground",
|
|
content: "Copy this snippet",
|
|
disableAnimation: true,
|
|
placement: "right",
|
|
closeDelay: 0
|
|
}}
|
|
>
|
|
npm install @nextui-org/react
|
|
</Snippet>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|