From 61f34bfe5a091dbcb0a1c6939d38da80acfa75e1 Mon Sep 17 00:00:00 2001 From: nayeon Date: Tue, 24 Mar 2026 16:03:12 +0900 Subject: [PATCH 1/2] Update index.js --- index.js | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 index.js diff --git a/index.js b/index.js new file mode 100644 index 0000000..bb09886 --- /dev/null +++ b/index.js @@ -0,0 +1,30 @@ +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'; +import CommentList from './chapter_05/CommentList'; +import NotificationList from './chapter_06/NotificationList'; +import Accommodate from './chapter_07/Accommodate'; +import ConfirmButton from './chapter_08/ConfirmButton'; +import LandingPage from './chapter_09/LandingPage'; +import AttendanceBook from './chapter_10/AttendanceBook'; +import SignUp from './chapter_11/SignUp'; +import Calculator from './chapter_12/Calculator'; +import ProfileCard from './chapter_13/ProfileCard'; +import DarkOrLight from './chapter_14/DarkOrLight'; +import Blocks from './chapter_15/Blocks'; + +ReactDOM.render( + + + , + document.getElementById('root') +); + +//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(); \ No newline at end of file From 3b36ea81fa55a850e078604fe6e0d4d51453af30 Mon Sep 17 00:00:00 2001 From: nayeon Date: Tue, 24 Mar 2026 16:37:18 +0900 Subject: [PATCH 2/2] =?UTF-8?q?feat:=20react=203=EC=A3=BC=EC=B0=A8=20?= =?UTF-8?q?=EC=A0=9C=EC=B6=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 index.js diff --git a/index.js b/index.js deleted file mode 100644 index bb09886..0000000 --- a/index.js +++ /dev/null @@ -1,30 +0,0 @@ -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'; -import CommentList from './chapter_05/CommentList'; -import NotificationList from './chapter_06/NotificationList'; -import Accommodate from './chapter_07/Accommodate'; -import ConfirmButton from './chapter_08/ConfirmButton'; -import LandingPage from './chapter_09/LandingPage'; -import AttendanceBook from './chapter_10/AttendanceBook'; -import SignUp from './chapter_11/SignUp'; -import Calculator from './chapter_12/Calculator'; -import ProfileCard from './chapter_13/ProfileCard'; -import DarkOrLight from './chapter_14/DarkOrLight'; -import Blocks from './chapter_15/Blocks'; - -ReactDOM.render( - - - , - document.getElementById('root') -); - -//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(); \ No newline at end of file