parent
7901933afa
commit
800b406317
@ -0,0 +1,14 @@
|
|||||||
|
import { Button, Tooltip } from "antd";
|
||||||
|
import { RxUpdate } from "react-icons/all.js";
|
||||||
|
import { startML } from "../api.js";
|
||||||
|
|
||||||
|
export const StartML = () => {
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Tooltip title="Обновить данные">
|
||||||
|
<Button className="absolute bottom-[108px] right-[20px] flex items-center justify-center p-3" onClick={() => startML()}>
|
||||||
|
<RxUpdate className="w-4 h-4" />
|
||||||
|
</Button>
|
||||||
|
</Tooltip>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in new issue