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