mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
22 lines
369 B
TypeScript
22 lines
369 B
TypeScript
const App = `import {Input} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<Input
|
|
type="email"
|
|
label="Email"
|
|
defaultValue="junior@nextui.org"
|
|
description="We'll never share your email with anyone else."
|
|
className="max-w-xs"
|
|
/>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|