title: auto
des: auto note:auto
This commit is contained in:
@@ -1,15 +1,22 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import HeaderTamplate from "@/app_modules/component/header_tamplate"
|
import HeaderTamplate from "@/app_modules/component/header_tamplate";
|
||||||
import { AppShell } from "@mantine/core"
|
import { AppShell, Stack, Text } from "@mantine/core";
|
||||||
import React from "react"
|
import React from "react";
|
||||||
|
|
||||||
export default function LayoutEditIntroInvestasi({children}: {children: React.ReactNode}){
|
export default function LayoutEditIntroInvestasi({
|
||||||
return<>
|
children,
|
||||||
<AppShell
|
}: {
|
||||||
header={<HeaderTamplate title="Edit Intro"/>}
|
children: React.ReactNode;
|
||||||
>
|
}) {
|
||||||
{children}
|
return (
|
||||||
</AppShell>
|
<>
|
||||||
|
<AppShell header={<HeaderTamplate title="Edit Intro" />}>
|
||||||
|
<Stack>
|
||||||
|
<Text>v1.0.1</Text>
|
||||||
|
{children}
|
||||||
|
</Stack>
|
||||||
|
</AppShell>
|
||||||
</>
|
</>
|
||||||
}
|
);
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user