14 lines
365 B
JavaScript
14 lines
365 B
JavaScript
import { Box } from "@mui/material";
|
|
import ConfirmAction from "./ConfirmAction";
|
|
import RejectAction from "./RejectAction";
|
|
|
|
const RowActions = ({ row, mutate }) => {
|
|
return (
|
|
<Box sx={{ display: "flex", gap: 1, justifyContent: "Center" }}>
|
|
<RejectAction />
|
|
<ConfirmAction />
|
|
</Box>
|
|
);
|
|
};
|
|
export default RowActions;
|