Study/React
React { JSX, Fragment, Interpolation }
JSX - React.createElement 표현식 - JSX의 사용을 위해 javascript compiler인 Babel이 필요하다. - Spread 연산자 응용가능 const element = Hello, world! // 간단한 JSX // Spread 연산자를 이용한 속성 삽입 const props = { className: titleClassName, children:text}; const custom = ; const element = custom; ReactDOM.render(element, rootElement); React.Fragment 를 이용한 멀티 Element 생성 이런식으로 빈태그로 감싸줘도 적용이된다. 이때 의문이다 왜 React.Fragment를 쓰게되는가? const ..
2022. 7. 9. 04:11