feat: add activity screen

This commit is contained in:
2024-01-13 17:12:44 +07:00
parent 1822eac488
commit 72870bb131
20 changed files with 530 additions and 36 deletions

View File

@@ -137,6 +137,24 @@ export default function Router() {
},
],
},
{
path: "activity",
async lazy() {
const { ActivityScreen } = await import("./routes/activty");
return { Component: ActivityScreen };
},
children: [
{
path: ":id",
async lazy() {
const { ActivityIdScreen } = await import(
"./routes/activty/id"
);
return { Component: ActivityIdScreen };
},
},
],
},
{
path: "depot",
children: [