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

JSX란? React에서는 본질적으로 렌더링 로직이 UI 조직에 따라 state가 변하는 방식, 화면에 표시하기 위해 사용됩니다. JSX에서 태그에 style에서는 HTML과 다르게 background-color 가 아닌 backgroundColor로 사용합니다. camelCase를 사용한다고 생각하면 됩니다. function App() { const name = "react"; const style = { backgroundColor : "black", color : "aqua", fontSize : 24, padding : "1rem" } return ( {name} ); } 또한 classname을 설정할 때도, class = 가 아닌, className = 으로 설정해야 합니다. function ..
Study/React
2023. 3. 17. 22:50