feat: generation of modules from the server, moved modules fields from the general tab

This commit is contained in:
2025-03-05 16:56:39 +04:00
parent 5d19d254da
commit 56135ae10c
85 changed files with 924 additions and 367 deletions

View File

@@ -0,0 +1,14 @@
import { Stack } from "@mantine/core";
import EmployeeInput from "./components/EmployeeInput.tsx";
import EmployeesTable from "./components/EmployeesTable.tsx";
const EmployeesTab = () => {
return (
<Stack>
<EmployeeInput />
<EmployeesTable />
</Stack>
);
};
export default EmployeesTab;