mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
23 lines
417 B
TypeScript
23 lines
417 B
TypeScript
const App = `import {Textarea} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Textarea
|
|
variant="faded"
|
|
label="Description"
|
|
labelPlacement="outside"
|
|
placeholder="Enter your description"
|
|
description="Enter a concise description of your project."
|
|
className="max-w-xs"
|
|
/>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|