JavaScript로 Todo List를 만들었으니, 이번엔 React로 만들어 봤습니다.완성본입니다.- 기본적인 TodoList 기능 (추가, 삭제, 수정, 전체삭제)- 랜덤 명언 표시- 스톱워치 기능이렇게 기능을 구현하였습니다.음악 재생은 모양만 내봤습니다... ㅠㅠ(제가 좋아하는 노래들이에요)// main.jsximport { StrictMode } from 'react'import { createRoot } from 'react-dom/client'import App from './App.jsx'import './index.css'import Box from './Box.jsx'import Music from './Music.jsx'createRoot(document.getElementById('..