Files
hipmi/src/app_modules/crowd/main/layout.tsx
Bagasbanuna02 54eae1bce3 feat:
- Tampilan buat berita
- Tampilan dialog page buat proyek investasi
- Tampilan list edit beritq
- # No issue
fix:
- Perubahan minor
2023-10-31 16:18:44 +08:00

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>
</>
);
}