??? ???? ? ????? ??? ????: https://www.sitepoint.com/react-tutorial-build-calculator-app/ ?? ??? ???? ? ????. ? ??????? ??? ? ??? ???? ?????
??? ? App.js ?????:
?????? index.js???:
import Wrapper from "./components/Wrapper.js"; import Screen from "./components/Screen.js"; import ButtonBox from "./components/ButtonBox.js"; import Button from "./components/Button.js"; const btnValues = [ ["C", "+-", "%", "/"], [7, 8, 9, "X"], [4, 5, 6, "-"], [1, 2, 3, "+"], [0, ".", "="], ]; const App = () => { return ( <Wrapper> <Screen value="0" /> <ButtonBox> { btnValues.flat().map((btn, i) => { return ( <Button key={i} className={btn === "=" ? "equals" : ""} value={btn} onClick={() => { console.log(`${btn} clicked!`); }} /> ); }) } </ButtonBox> </Wrapper> ); }; export default App;
??? ?? ???? ???? index.js ??? import ?? ??? ?? ? ????. ? ??? ?? ??? ???? ??? ?? "react-dom/client"?? ReactDOM? ????? ?????.
? ??? ????? "react-dom/client" ?? "react-dom"?? ReactDOM? ????? index.js ??? import ?? ?????? ???. ??? import ?? ??? ????.
???