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.

11 lines
313 B

import { useLastMLRun } from "../api.js";
export function LastMLRun() {
const {data: time} = useLastMLRun();
return (
<div className="absolute bottom-[20px] left-[254px] text-xs text-grey z-10 bg-white-background rounded-xl p-2 space-y-3">
Последний запуск: {time}
</div>
);
}