()
| 3 | import { useState } from 'react'; |
| 4 | |
| 5 | function App() { |
| 6 | const [value, setValue] = useState(dayjs('2023-11-08')); |
| 7 | |
| 8 | return ( |
| 9 | <div className="App"> |
| 10 | <Calendar value={value} onChange={(val) => { |
| 11 | setValue(val) |
| 12 | }}></Calendar> |
| 13 | </div> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export default App; |
nothing calls this directly
no test coverage detected