Files
hipmi/src/app/dev/vote/edit/[id]/layout.tsx
Bagasbanuna02 e629157960 # Voting
## feat
- Voting user
- Halaman kontribusi
- Halaman riwayat
### No issuue
2024-02-16 17:20:06 +08:00

15 lines
257 B
TypeScript

import { LayoutVote_Edit } from "@/app_modules/vote";
import React from "react";
export default async function Layout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
<LayoutVote_Edit>{children}</LayoutVote_Edit>
</>
);
}