import { useState } from "react"; import { Link } from "react-router-dom"; import catchErrors from "../../utils/catchErrors.js"; import styles from "../Schedule/schedule.module.scss"; import styles2 from "./studyplan.module.scss"; const PlanItem = () => { const [error, setError] = useState("") async function delSchedule() { try { setError("") alert("해당 일정을 삭제했습니다.") window.location.reload() } catch (error) { catchErrors(error, setError) } } return (
컴퓨터의 프로세스 수 체크하는 프로그램 만들기 과제
결과화면 캡쳐해서 exe파일이랑 함께 압축하여 제출하기
수정
) } export default PlanItem;