Mitchell Magro 52784ffc85 Fixing build
2025-07-17 22:04:54 +02:00

10 lines
203 B
TypeScript

"use client";
import { DashboardHomePage } from "../features/pages/DashboardHomePage/DashboardHomePage";
const DashboardPage = () => {
return <DashboardHomePage />;
};
export default DashboardPage;