15 lines
378 B
TypeScript
15 lines
378 B
TypeScript
"use server";
|
|
import React from "react";
|
|
import MainBodyWithHeader from "@/components/defaultLayout/MainBodyWithHeader";
|
|
import BuildingPage from "@/pages/Build/BuildingPage";
|
|
|
|
const Decision = async () => {
|
|
return (
|
|
<div className="overflow-hidden">
|
|
<MainBodyWithHeader children={BuildingPage} section="BuildingPage" />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Decision;
|