10 lines
202 B
TypeScript
10 lines
202 B
TypeScript
"use client";
|
|
|
|
import { DashboardHomePage } from "./features/pages/dashboardhomepage/dashboardhomepage";
|
|
|
|
const DashboardPage = () => {
|
|
return <DashboardHomePage />;
|
|
};
|
|
|
|
export default DashboardPage;
|