From 394cb684894d63e9947fd88ccfb706e5096a3f76 Mon Sep 17 00:00:00 2001 From: Petropoulos Evangelos Date: Fri, 20 Jun 2025 17:07:51 +0300 Subject: [PATCH] change div --- payment-iq/app/dashboard/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/payment-iq/app/dashboard/page.tsx b/payment-iq/app/dashboard/page.tsx index 69588e4..99c60f5 100644 --- a/payment-iq/app/dashboard/page.tsx +++ b/payment-iq/app/dashboard/page.tsx @@ -1,13 +1,14 @@ 'use client'; +import { Box } from "@mui/material"; import { HomePage } from "../components/Pages/HomePage/HomePage"; const DashboardPage = () => { return ( -
+ -
+ ); };