import React from "react"; import Table from "../../../component/Table.jsx"; import DetailSearch from "../../../component/DetailSearch.jsx"; import ContentTitle from "../../../component/ContentTitle.jsx"; import SubTitle from "../../../component/SubTitle.jsx"; import { useNavigate } from 'react-router'; export default function TemperatureManagementSelect() { const navigate = useNavigate(); //게시판 const thead = ["No", "이름","시니어등록번호", "생년월일", "연락처", "주소", "최근 최저 온도","최근 최고 온도",]; const key = ["No", "name", "number","birth", "phone", "address", "low", "high"]; const content = [ { No: 1, name: "김복남", number: "00000001", birth: "1948.11.15", phone: "010-1234-5678", address: "경상북도 군위군 삼국유사면", low: "18°C", high: "18°C", }, { No: 2, name: "홍길동", number: "00000001", birth: "1945.05.08", phone: "010-1234-5678", address: "경상북도 군위군 군위읍", low: "10°C", high: "10°C", }, ]; return (
{navigate('/TemperatureManagementSelectOne')}} /> ); }