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() {

사용자

- + + 자세히 +