Files
hipmi/src/app_modules/voting/create/layout.tsx
Bagasbanuna02 0dd8e287f4 # Voting
## feat
- Create function
- Get list by status id
- Get one vote by id
### No issuue
2024-02-09 17:50:38 +08:00

20 lines
402 B
TypeScript

"use client";
import { AppShell } from "@mantine/core";
import React from "react";
import ComponentVote_HeaderTamplate from "../component/header_tamplate";
export default function LayoutVote_Create({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<AppShell header={<ComponentVote_HeaderTamplate title="Tambah Vote" />}>
{children}
</AppShell>
</>
);
}