Adding cards for modules and creating mobility module

This commit is contained in:
Clayzxr
2025-01-15 15:44:52 +01:00
parent 55cf175181
commit 8cee593d33
8 changed files with 84 additions and 4 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>
</>
);
}