Files
Rasadyar_Inspection_System/src/partials/main/MainInfractions.tsx
2026-01-26 10:14:10 +03:30

18 lines
414 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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>
);
};