2023-05-29 19:56:18 -03:00

19 lines
372 B
TypeScript

const App = `import {Input} from "@nextui-org/react";
export default function App() {
return (
<div className="flex w-full flex-wrap md:flex-nowrap gap-4">
<Input type="email" label="Email" />
<Input type="email" label="Email" placeholder="Enter your email" />
</div>
);
}`;
const react = {
"/App.jsx": App,
};
export default {
...react,
};