inflearn logo
Course

Course

Instructor

xoals6798572's Posts

xoals6798572 xoals6798572

@xoals6798572

Reviews Written
-
Average Rating
-

Posts 4

Q&A

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입니다.

Likes
0
Comments
2
Viewcount
541

Q&A

serve -s build가 되지 않습니다..

맥쓰시는 분들도 혹시나 보실까봐 댓글 남깁니다! https://blog.sonim1.com/125 npm install -g serve 안되시는 분들은 위에 링크 참고 하시면 됩니다! 저는 아래와 같이 작성해서 install 되었습니다! sudo npm install -g serve 이렇게 하니깐 되었습니다!!

Likes
0
Comments
3
Viewcount
1029