## feat - Create function - Get list by status id - Get one vote by id ### No issuue
20 lines
402 B
TypeScript
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>
|
|
</>
|
|
);
|
|
}
|