반응형
어쩌다보니 써야 할 일이 생겨서 기록으로 남긴다.
물론 리액트 공식문서에도 사용법이 잘 나와있다.
https://ko.reactjs.org/docs/react-without-jsx.html
코드 샘플
e('header', {className: 'custom-header'}, '타이틀'),
e('article', {className:'custom-article'},
e('div', {className:'custom-div'},
e('span', {className:'custom-span'}, '샘플')
));
e는 React.createElement를 짧은 변수에 할당한것이다.
component, props, children 순으로 들어간다. className이나 attribute가 없다면 null을 입력한다.
반응형
'[IT] 프로덕트 개발 > React - 리액트' 카테고리의 다른 글
[React] useState를 사용하여 인풋 만들기 (3) | 2022.09.07 |
---|---|
[React] Context api 사용해 로딩 구현하기 (0) | 2022.07.03 |
[Next] React 에서 Swiper 사용하기 (0) | 2022.06.22 |
[Next] next 에서 scss 사용하기 및 레이아웃 구조 (0) | 2022.06.20 |
[React] 리액트 버튼 컴포넌트 만들기 (타입스크립트) (1) | 2022.06.15 |