tambahannya
This commit is contained in:
8
src/app/darmasaba/(pages)/pendidikan/[sub]/page.tsx
Normal file
8
src/app/darmasaba/(pages)/pendidikan/[sub]/page.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default async function Page({ params }: { params: Promise<{ sub: string }> }) {
|
||||
const { sub } = await params
|
||||
return (
|
||||
<div>
|
||||
<h1>{sub}</h1>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
7
src/app/darmasaba/(pages)/pendidikan/page.tsx
Normal file
7
src/app/darmasaba/(pages)/pendidikan/page.tsx
Normal file
@@ -0,0 +1,7 @@
|
||||
import { Stack } from "@mantine/core";
|
||||
|
||||
export default function Page() {
|
||||
return <Stack>
|
||||
pendidikan
|
||||
</Stack>
|
||||
}
|
||||
Reference in New Issue
Block a user