import React from "react"; import { observer } from "mobx-react"; import classNames from "classnames"; import { Loader } from "eez-studio-ui/loader"; import { List } from "instrument/bb3/objects/List"; export const ListActions = observer(({ list }: { list: List }) => { if (!list.bb3Instrument.instrument.isConnected) { return null; } if (list.busy) { return ; } return (
{list.canDownload && ( )} {list.canUpload && ( )} {list.canUpload && ( )}
); });