You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
418 B
21 lines
418 B
2 years ago
|
import React, { useState } from 'react';
|
||
|
import { Button, TimePicker } from 'antd';
|
||
|
|
||
|
const App: React.FC = () => {
|
||
|
const [open, setOpen] = useState(false);
|
||
|
|
||
|
return (
|
||
|
<TimePicker
|
||
|
open={open}
|
||
|
onOpenChange={setOpen}
|
||
|
renderExtraFooter={() => (
|
||
|
<Button size="small" type="primary" onClick={() => setOpen(false)}>
|
||
|
OK
|
||
|
</Button>
|
||
|
)}
|
||
|
/>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default App;
|