[구구단 게임] 함수 컴포넌트
·
FRONTEND/React
함수로 만들어보기 rfce는 export default가 아래에 작성됨 index.js에서도 컴포넌트 바꿔준다. import React, { useState } from "react"; function GuguFunction() { //useState const [first, setFirst] = useState(Math.ceil(Math.random() * 9)); const [second, setSecond] = useState(Math.ceil(Math.random() * 9)); const [value, setValue] = useState(""); const [result, setResult] = useState(""); const [score, setScore] = useState(0); co..