mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* fix(docs): imports missing in DateRangePicker * fix(docs): removed ununused imports in DatePicker --------- Co-authored-by: shrinidhi.upadhyaya <shrinidhiupadhyaya1195@gmail.com>
22 lines
397 B
TypeScript
22 lines
397 B
TypeScript
const App = `import {DatePicker} from "@nextui-org/react";
|
|
|
|
export default function App() {
|
|
return (
|
|
<div className="flex w-full flex-wrap md:flex-nowrap gap-4">
|
|
<DatePicker
|
|
label="Birth date"
|
|
className="max-w-[284px]"
|
|
description={"Thiis is my birth date."}
|
|
/>
|
|
</div>
|
|
);
|
|
}`;
|
|
|
|
const react = {
|
|
"/App.jsx": App,
|
|
};
|
|
|
|
export default {
|
|
...react,
|
|
};
|