Skip to content

Commit 98b3229

Browse files
committed
Update README.md 📚
1 parent 0cb0151 commit 98b3229

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ module.exports = {
8888
Then use react-tailwindcss-select in your app:
8989

9090
```tsx
91-
import React, { useState } from "react";
91+
import { useState } from "react";
9292
import Datepicker from "react-tailwindcss-datepicker";
9393

9494
const App = () => {
@@ -98,9 +98,9 @@ const App = () => {
9898
});
9999

100100
return (
101-
<div>
101+
<>
102102
<Datepicker value={value} onChange={newValue => setValue(newValue)} />
103-
</div>
103+
</>
104104
);
105105
};
106106

0 commit comments

Comments
 (0)