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 |
Tags
- SSL
- FineGrained
- cs
- Meta Learning
- 3d
- math
- algorithm
- 머신러닝
- Python
- 딥러닝
- Depth estimation
- web
- pytorch
- CV
- nerf
- 알고리즘
- FGVC
- classification
- REACT
- dl
- computervision
- Front
- Torch
- Vision
- PRML
- clean code
- nlp
- 자료구조
- GAN
- ML
- 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