12 lines
215 B
TypeScript
12 lines
215 B
TypeScript
'use client';
|
|
|
|
import { DashboardHomePage } from "../components/Pages/DashboardHomePage/DashboardHomePage";
|
|
|
|
const DashboardPage = () => {
|
|
return (
|
|
<DashboardHomePage />
|
|
);
|
|
};
|
|
|
|
export default DashboardPage;
|