import React, { useState, useEffect } from 'react'; import Menu from '../Components/Menu'; import axios from 'axios'; function Check(props) { function getReserve() { axios.get(`/reserves/${props.match.params.id}`, { headers: { authorization: localStorage.getItem('token') }, }) .then(res => { if (res.status !== 201) { alert(res.data.error); } console.log(res.data); setReserve(res.data); }) .catch(err => { alert(err.error) }); } function remove(index) { axios.delete(`/reserves/${reserve[index]._id}`) .then(res => { if (res.status === 404) return alert(res.data.error) alert("삭제되었습니다!") }) .catch(err => { alert(err.error) }); }; function renderTableBody() { return reserve.map((reserve, index) => { return (