Merge branch 'main' into PMPR-3

This commit is contained in:
Kevin FEDYNA
2025-01-15 15:48:50 +01:00
committed by GitHub
7 changed files with 83 additions and 10 deletions
+9
View File
@@ -0,0 +1,9 @@
import { AppProperties } from "../../../(_islands)/AppNavigator.tsx";
const properties: AppProperties = {
name: "PolyMobility",
icon: "flight_takeoff",
hint: "Gestionnaire de mobilité"
};
export default properties;
+12
View File
@@ -0,0 +1,12 @@
type ModulesProps = Record<string | number | symbol, never>;
export default function Modules(_props: ModulesProps) {
return (
<>
<h2>All PolyMPR modules</h2>
<nav>
</nav>
</>
);
}
+1
View File
@@ -10,6 +10,7 @@ const properties: AppProperties = {
students: "Students management",
},
adminOnly: ["courses", "students"],
hint: "Gestionnaire de note"
};
export default properties;