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