Prepared for Vite Migration

This commit is contained in:
Dunemask 2022-07-06 20:20:27 +00:00
parent 468437b5d0
commit d46be86f68
14 changed files with 392 additions and 236 deletions

View file

@ -8,7 +8,6 @@ import AccordionSummary from "@mui/material/AccordionSummary";
import Typography from "@mui/material/Typography";
import IconButton from "@mui/material/IconButton";
import DeleteIcon from "@mui/icons-material/Delete";
import PlayArrowIcon from "@mui/icons-material/PlayArrow";
import Box from "@mui/material/Box";
@ -33,10 +32,21 @@ export default function CatalogBox(props) {
const toggleOpen = () => setOpen(!open);
const runTest = (e) => {
e.preventDefault();
e.stopPropagation();
jobBuilder([catalogTest]);
};
function Actions() {
return (
<React.Fragment>
<IconButton color="success" aria-label="play" component="span">
<IconButton
color="success"
aria-label="play"
component="span"
onClick={runTest}
>
<PlayArrowIcon />
</IconButton>
</React.Fragment>