Files
frontend/src/components/dashboard/technicalBuildingDamage/operator/RowActions/index.jsx
2025-02-19 11:52:27 +00:00

7 lines
159 B
JavaScript

import { Box } from "@mui/material";
const RowActions = ({ row }) => {
return <Box sx={{ display: "flex", gap: 1 }}></Box>;
};
export default RowActions;