Recent Posts
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 | 31 |
Tags
- 딥러닝
- math
- ML
- dl
- Front
- cs
- pytorch
- Torch
- FineGrained
- Meta Learning
- 알고리즘
- 머신러닝
- computervision
- REACT
- classification
- SSL
- web
- clean code
- FGVC
- PRML
- CV
- 3d
- nerf
- Python
- algorithm
- nlp
- Depth estimation
- GAN
- 자료구조
- Vision
- Today
- Total
목록ConditionRendering (1)
KalelPark's LAB
[React] 조건부 Rendering이란?
Condition Rendering? 조건부 렌더링이란, 특정 조건에 따라 다른 결과물을 Rendering하는 것을 의미합니다. 삼항연산자를 사용하여, 해결하는 것이 가능합니다. function App() { return ( ); } Hello.js function Hello({name, color, isSpecial}) { return {isSpecial ? * : null} 안녕하세요. {name} } export default Hello;
Study/React
2023. 3. 17. 22:56