This commit is contained in:
bipproduction
2025-02-17 12:37:27 +08:00
parent a72e6405e6
commit 333f575693
19 changed files with 106 additions and 57 deletions

View File

@@ -0,0 +1,7 @@
import { Stack } from "@mantine/core";
export default function Page({ params }: { params: { sub: string } }) {
return <Stack>
{params.sub}
</Stack>
}