import React from "react"; import Title from "../../component/Title.jsx"; import Table from "../../component/Table.jsx"; import Calendar from "../../component/Calendar.jsx"; import ClearIcon from '@mui/icons-material/Clear'; import BatteryCharging20Icon from '@mui/icons-material/BatteryCharging20'; import DeviceThermostatIcon from '@mui/icons-material/DeviceThermostat'; import MedicationIcon from '@mui/icons-material/Medication'; import AssignmentTurnedInIcon from '@mui/icons-material/AssignmentTurnedIn'; import CheckCircleOutlineIcon from '@mui/icons-material/CheckCircleOutline'; import ErrorIcon from '@mui/icons-material/Error'; export default function Main_guardian() { const tableHead1 = ["", "", "", "", "", ""]; const Key1 = ["morning", "morning2", "lunch","lunch2", "dinner","dinner2"]; const content1 = [ { morning: "아침", morning2:( ), lunch: "점심", lunch2: ( ), dinner: "저녁", dinner2: ( ), } ]; const tableHead2 = ["", "", "", "", "", ""]; const Key2 = ["morning", "morning2", "lunch","lunch2", "dinner","dinner2"]; const content2 = [ { morning: "아침", morning2:( ), lunch: "점심", lunch2: ( ), dinner: "저녁", dinner2: ( ), } ]; const tableHead3 = ["월", "화", "수", "목", "금", "토", "일"]; const Key3 = ["mon", "tue", "wed","thu", "fri","sat","sun"]; const content3 = [ { mon: "24°C", tue: "24°C", wed: "24°C", thu: "24°C", fri: "24°C", sat: "24°C", sun: "24°C", } ]; return ( <>
  • 방문 체크

    이번달 보호사님이 방문한 횟수는 총 4회 입니다.

  • 복약 체크

    약을 잘 복용하고 계신지 체크해주세요

  • 어제

  • 2일 전

  • 3일 전

    • 온도 체크

      댁내 온도가 적절한지 체크해보세요.

    • 현재 스마트 약상자의 배터리가 40% 입니다.

    • 충전이 필요합니다.

    </div> </div> </main> </> ); }