From c632d2296fea86ceeac3ff84ae15aa2ee2b7399c Mon Sep 17 00:00:00 2001 From: "sosuke.iwabuchi" Date: Mon, 15 Jan 2024 13:01:16 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=9D=E3=83=BC=E3=82=BF=E3=83=AB=E5=AF=BE?= =?UTF-8?q?=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/dashboard/index.tsx | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/src/pages/dashboard/index.tsx b/src/pages/dashboard/index.tsx index be9e6b9..1353061 100644 --- a/src/pages/dashboard/index.tsx +++ b/src/pages/dashboard/index.tsx @@ -1,4 +1,4 @@ -import { Box } from "@mui/material"; +import { Box, Card, CardContent, CardHeader, Typography } from "@mui/material"; import useDashboard from "hooks/useDashBoard"; import { PageID, TabID } from "pages"; import { useEffect } from "react"; @@ -10,8 +10,19 @@ export default function Overview() { ); useEffect(() => { - setHeaderTitle("Dashboard"); + setHeaderTitle("ポータル"); setTabs(null); }, [setHeaderTitle, setTabs]); - return ; + return ( + + + + + お知らせ + + 特にありません + + + + ); }