- Tampilan buat berita - Tampilan dialog page buat proyek investasi - Tampilan list edit beritq - # No issue fix: - Perubahan minor
25 lines
585 B
TypeScript
25 lines
585 B
TypeScript
"use client";
|
|
|
|
import HeaderTamplate from "@/app_modules/component/header_tamplate";
|
|
import { ActionIcon, AppShell, Group, Header, Text } from "@mantine/core";
|
|
import { IconArrowLeft } from "@tabler/icons-react";
|
|
import { useRouter } from "next/navigation";
|
|
import React from "react";
|
|
|
|
export default function LayoutMainCrowd({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
const router = useRouter();
|
|
return (
|
|
<>
|
|
<AppShell
|
|
header={<HeaderTamplate route="/dev/home" title="HIPMI Crowd Funding" />}
|
|
>
|
|
{children}
|
|
</AppShell>
|
|
</>
|
|
);
|
|
}
|