Files
Rasadyar_Inspection_System/src/partials/main/MainInfractions.tsx

18 lines
414 B
TypeScript
Raw Normal View History

2026-01-26 10:14:10 +03:30
import Typography from "../../components/Typography/Typography";
import { Grid } from "../../components/Grid/Grid";
export const MainInfractions = ({
data,
handleUpdate,
}: {
data: any;
handleUpdate: () => void;
}) => {
console.log(data, handleUpdate);
return (
<Grid container column>
<Typography variant="body1">این بخش در دست توسعه است</Typography>
</Grid>
);
};