Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 실행컨텍스트스택
- 알고리즘
- 실행컨텍스트 동작과정
- 객체
- npm 에러
- useRef역할
- Block
- Mini Node Server
- 실행컨텍스트콜스택
- 고차함수
- 개발일기
- 영어
- state hook
- .current
- 개발공부
- 실행컨텍스트 실행과정
- styled-component
- 실행컨텍스트란
- 실행컨텍스트자바스크립트
- 로컬상태
- 그래머인유즈
- CORS
- css
- .env
- CLI
- 영어공부
- 노마드코더
- 전역상태
- html
- 실행컨텍스트 면접
Archives
- Today
- Total
목록state hook (1)
오늘도 삽질중
React State 예제 (State Lifting State Up Hooks 예제, Effect hook)
🎟 Lifting State Up import React, { useState } from "react"; import "./styles.css"; const currentUser = “박소영”; function Twittler() { const [tweets, setTweets] = useState([ { id: 1, writer: “parksoyoung”, date: "2020-11-1”, content: "안녕 리액트" }, { id: 2, writer: “박소영”, date: "2020-11-1”, content: “리액트 너 좀 어렵다?” }, ]); const addNewTweet = (newTweet) => { setTweets([...tweets, newTweet]); }; // 이 상태 ..
카테고리 없음
2021. 11. 1. 20:38