소개글이 비어있어요
게시글
질문&답변
작동이 안되네요....ㅠㅠ
올려주신 깃허브에서 그대로 복사해도 안되는 중입니다 ㅠㅡㅠ
- 0
- 4
- 431
질문&답변
작동이 안되네요....ㅠㅠ
import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import App from './App'; import reportWebVitals from './reportWebVitals'; import Library from './chapter_03/Library'; import Clock from './chapter_04/Clock'; const root = ReactDOM.createRoot(document.getElementById('root')); root.render( ); setInterval(() => { root.render( ); }) // If you want to start measuring performance in your app, pass a function // to log results (for example: reportWebVitals(console.log)) // or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals reportWebVitals();
- 0
- 4
- 431