16 lines
314 B
TypeScript
16 lines
314 B
TypeScript
"use client";
|
|
|
|
import BaseLayout from "@/components/layouts/BaseLayout/BaseLayout";
|
|
import MainPageHome from "@/components/page/Home/MainPageHome";
|
|
import React from "react";
|
|
|
|
const page = () => {
|
|
return (
|
|
<BaseLayout title="Dashboard">
|
|
<MainPageHome />
|
|
</BaseLayout>
|
|
);
|
|
};
|
|
|
|
export default page;
|