16 lines
531 B
JavaScript
16 lines
531 B
JavaScript
import { Stack } from "@mui/material";
|
|
import Create from "./Actions/Create";
|
|
import OperatorViolations from "./Actions/Violations";
|
|
// import CreateWithoutProcess from "./Actions/CreateWithoutProcess";
|
|
|
|
const Toolbar = ({ table, filterData, mutate }) => {
|
|
return (
|
|
<Stack direction={"row"} spacing={1}>
|
|
<Create mutate={mutate} />
|
|
<OperatorViolations mutate={mutate} />
|
|
{/*<CreateWithoutProcess mutate={mutate} />*/}
|
|
</Stack>
|
|
);
|
|
};
|
|
export default Toolbar;
|