일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- RECOIL
- sever action
- @tailwind utility
- iron-session
- @tailwind components
- SSR
- 클로저
- supabase realtime
- commit phase
- 프로그래머스
- unstable_nostore
- 3진법 뒤집기
- createbrowserrouter
- interceptor routes
- revalidatetag
- @tailwind
- sever components
- static pages
- CSS
- render phase
- @tailwind base
- client components
- dynamic pages
- image component
- server components
- 리액트
- revalidatepath
- 자바스크립트
- js
- 타입스크립트
Archives
- Today
- Total
목록전체 글 (105)
개발하는 너구리

props - properties의 약자, 우리가 어떤값을 컴포넌트에 전달할 때 사용 - 상위 컴포넌트 -> 하위 컴포넌트 (단방향 흐름) children prop - 모든 컴포넌트의 props 객체는 children이라는 이름의 property를 가진다 - props.children은 컴포넌트의 여는 태그와 닫는 태그 사이의 모든 것을 리턴 ex)Hello World! function Welcome(props) { return props.children --> props.children == Hello World! } JSON 메소드 JSON.stringify() : js객체 -> JSON 문자열로 반환 (object to JSON) JSON.parse() :JSON 문자열 -> js객체로 반환 (JS..
TIL
2022. 10. 27. 00:07