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
- algorithm
- cs
- FGVC
- pytorch
- 딥러닝
- Python
- Front
- 알고리즘
- clean code
- Torch
- Vision
- nlp
- 3d
- 머신러닝
- ML
- computervision
- SSL
- FineGrained
- web
- GAN
- math
- 자료구조
- Meta Learning
- REACT
- classification
- PRML
- nerf
- CV
- Depth estimation
- dl
- Today
- Total
목록컴포넌트 (1)
KalelPark's LAB
[React] React 에서의 Style, className, props란?
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