We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cb0151 commit 98b3229Copy full SHA for 98b3229
README.md
@@ -88,7 +88,7 @@ module.exports = {
88
Then use react-tailwindcss-select in your app:
89
90
```tsx
91
-import React, { useState } from "react";
+import { useState } from "react";
92
import Datepicker from "react-tailwindcss-datepicker";
93
94
const App = () => {
@@ -98,9 +98,9 @@ const App = () => {
98
});
99
100
return (
101
- <div>
+ <>
102
<Datepicker value={value} onChange={newValue => setValue(newValue)} />
103
- </div>
+ </>
104
);
105
};
106
0 commit comments