React/Component

    [ React ] Modal

    🔴 Introduction ⚪ 어느 위치에서나 사용할 수 있는 모달창을 만드는 구조 🟠 Usage 📄 public/index.html 📄 index.jsx import React from "react"; import ReactDOM from "react-dom/client"; import { Provider } from "react-redux"; import store from "./store"; import App from "./App"; import Modal from "./Modal"; const root = ReactDOM.createRoot(document.getElementById("root")); root.render( ); 📄 store.js import { configureStore } ..