젠싱 싱예
연구일자: 2023.03.05 <!DOCTYPE html> <html> <body> <div id=”root”></div> </body> <script src=”https://unpkg.com/[email protected]/umd/react.production.min.js”></script> <script src=”https://unpkg.com/[email protected]/umd/react-dom.production.min.js”></script> <script src=”https://unpkg.com/@babel/standalone/babel.min.js”></script> <script type=”text/babel”> const root = document.getElementById(“root”); // Title const Title = () => ( <h3 id=”title” onMouseEnter={() => console.log(“mouse enter”)} > Hello I’m a title </h3> ); // Button const Button = () => ( <button style={{ backgroundColor: “tomato”}} onClick={() … Read more