일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- background: url
- hook
- Javascript
- react-helmet
- Next13
- Render Props
- react
- getUTCDate
- RTK Query
- Nextjs React 18
- background tab
- background setttimeout
- codingtest
- React18
- React 18
- Programmers
- React API 참고서
- React 공식문서
- React 18 Nextjs
- react hook
- notFound()
- 고급안내서
- Nextjs
- React 고급안내서
- Babel
- background setInterval
- CSS
- next13 head
- context
- React 고급 안내서
Archives
- Today
- Total
akjfal
JSX 없이 사용하는 React 본문
React를 만들 때 JSX는 필수가 아닙니다. 특히 빌드 환경에서 컴파일 설정을 하고 싶지 않을 때 JSX 없이 React를 사용하는 것은 편합니다.
각 JSX 엘리먼트는 React.createElement(component, props, ...children)를 호출하기 위한 것입니다. 그래서 JSX로 할 수 있는 것들은 Javascript로도 할 수 있습니다.
React를 사용할 때 JSX는 필수가 아닙니다. 빌드환경에서 컴파일 설정을 하고 싶지 않을 때 사용하면됩니다.
jsx element → React.createElement(component, props, …children);
class Hello extends React.Component {
render() {
return <div>hello {this.props.toWhat}</div>
}
}
const root = REactDOM.createRoot(docuemnt.getElementById('root');
root.render(<Hello toWhat="World" />);
아래 코드로 컴파일됩니다.
class Hello extends React.Component {
render(){
return REact.createElement('div', null, `Hello ${this.props.toWhat}`);}
}
}
const root = ReactDOM.createRoot(document.getElementById('root'));
root.render(React.createElement(Hello, {toWhat: 'World'}, null));
'(구)React 공식문서 > 고급 안내서' 카테고리의 다른 글
Ref와 DOM (0) | 2023.02.22 |
---|---|
재조정(Reconciliation) (0) | 2023.02.22 |
Profiler API (0) | 2023.02.22 |
Portal (0) | 2023.02.22 |
성능 최적화 (0) | 2023.02.20 |
Comments