fix ui layout voting

This commit is contained in:
2025-03-13 10:49:25 +08:00
parent f3a20dee54
commit 02ff90c204
15 changed files with 139 additions and 20 deletions

View File

@@ -1,4 +1,5 @@
import { LayoutVote_Main } from "@/app_modules/vote";
import NewLayout_Voting from "@/app_modules/vote/main/new_layout_voting";
import React from "react";
export default async function Layout({
@@ -8,7 +9,8 @@ export default async function Layout({
}) {
return (
<>
<LayoutVote_Main>{children}</LayoutVote_Main>
{/* <LayoutVote_Main>{children}</LayoutVote_Main> */}
<NewLayout_Voting>{children}</NewLayout_Voting>
</>
);
}