Q&A
고양이 사진이 깨져요.ㅜㅜ
api 서버를 내린거같아여.. 저도 안들어가집니다 ㅠ
- Likes
- 2
- Comments
- 3
- Viewcount
- 392
Q&A
api 서버를 내린거같아여.. 저도 안들어가집니다 ㅠ
Q&A
import React, { useState } from "react"; import OddEvenResult from "./OddEvenResult"; const Counter = ({ initalValue }) => { const [count, setCount] = useState(initalValue); const onIncrease = () => { setCount(count + 1); }; const onDecrease = () => { setCount(count - 1); }; console.log(typeof initalValue); return ( {count} + - ); }; Counter.defalutProps = { initalValue: 0, }; export default Counter; Counter.js입니다.
Q&A
맥쓰시는 분들도 혹시나 보실까봐 댓글 남깁니다! https://blog.sonim1.com/125 npm install -g serve 안되시는 분들은 위에 링크 참고 하시면 됩니다! 저는 아래와 같이 작성해서 install 되었습니다! sudo npm install -g serve 이렇게 하니깐 되었습니다!!
Q&A
products.push({name:"야구공"}) 이렇게 추가하면 되네요!