11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
import { LayoutVote_DetailPublish } from "@/app_modules/vote";
|
|
import React from "react";
|
|
|
|
export default function Layout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<>
|
|
<LayoutVote_DetailPublish>{children}</LayoutVote_DetailPublish>
|
|
</>
|
|
);
|
|
}
|