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