소개
게시글
질문&답변
2023.12.31
고양이 사진이 깨져요.ㅜㅜ
api 서버를 내린거같아여.. 저도 안들어가집니다 ㅠ
- 2
- 3
- 236
질문&답변
2023.06.11
props 질문 있습니다.
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입니다.
- 0
- 2
- 434
질문&답변
2022.11.21
serve -s build가 되지 않습니다..
맥쓰시는 분들도 혹시나 보실까봐 댓글 남깁니다! https://blog.sonim1.com/125npm install -g serve 안되시는 분들은 위에 링크 참고 하시면 됩니다! 저는 아래와 같이 작성해서 install 되었습니다!sudo npm install -g serve 이렇게 하니깐 되었습니다!!
- 0
- 3
- 801
질문&답변
2022.03.14
배열 객체안에 추가하는 함수가 궁금합니다.
products.push({name:"야구공"}) 이렇게 추가하면 되네요!
- 1
- 2
- 303