📚 Reference
🔖 Index
리액트 컴포넌트를 스타일링하는 다양한 방법이 있고, 각각은 장단점이 있다. 주로 사용되는 것들은 다음과 같다.
render() {
const tempStyle = {
display:"inline-block",
width:"100px",
height:"100px",
boder:"1px solid black",
background:"orange"
}
return (
<Fragment>
<div style={tempStyle}></div>
</Fragment>
);
}}
<div style={{
display:'inline-block',
width:'100px',
height:'100px'
}}></div>