mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
26 lines
437 B
TypeScript
26 lines
437 B
TypeScript
const App = `import {Textarea} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Textarea
|
|
label="Description"
|
|
variant="bordered"
|
|
placeholder="Enter your description"
|
|
disableAnimation
|
|
disableAutosize
|
|
classNames={{
|
|
base: "max-w-xs",
|
|
input: "resize-y min-h-[40px]",
|
|
}}
|
|
/>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|