From 44bd24c9b743d47b7575815c4cbe8d30b27c67a2 Mon Sep 17 00:00:00 2001 From: hyeonjinan096 Date: Mon, 28 Apr 2025 19:02:05 +0900 Subject: [PATCH] =?UTF-8?q?[#83]=20feat:=20=EB=8C=80=EC=8B=9C=EB=B3=B4?= =?UTF-8?q?=EB=93=9C=20=ED=8E=98=EC=9D=B4=EC=A7=80=EC=97=90=20user=20?= =?UTF-8?q?=EC=9E=90=EC=84=B8=ED=9E=88=20=EB=B2=84=ED=8A=BC=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DashboardPage.jsx | 25 +++++++++++++++++++++++++ src/app/dashboard/page.tsx | 6 +++--- 2 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 DashboardPage.jsx diff --git a/DashboardPage.jsx b/DashboardPage.jsx new file mode 100644 index 0000000..65e10d8 --- /dev/null +++ b/DashboardPage.jsx @@ -0,0 +1,25 @@ +import React, { useCallback } from 'react'; +import { useNavigate } from 'react-router-dom'; +import { Button } from '@mui/material'; +import InfoIcon from '@mui/icons-material/Info'; + +const DashboardPage = () => { + const navigate = useNavigate(); + + const handleCompanyClick = useCallback(() => { + navigate('/company'); + }, [navigate]); + + return ( + + ); +}; + +export default DashboardPage; \ No newline at end of file diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index cfbe28b..65f12f7 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -307,9 +307,9 @@ export default function DashboardPage() {

사용자

- + + 자세히 +