first commit

This commit is contained in:
2026-01-26 10:14:10 +03:30
commit 9a995d5109
160 changed files with 34879 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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>
);
};