-
[react] Parse Error: Adjacent JSX elements must be wrapped in an enclosing tagFrontend/react 2020. 3. 9. 03:30
// WRONG! return ( <C1 /> <C2 /> ) // Correct return ( <div> <C1 /> <C2 /> </div> ) // More Correct return ( <React.Fragment> <C1 /> <C2 /> </React.Fragment> )
'Frontend > react' 카테고리의 다른 글
[React] redux-saga - take, takeEvery (0) 2020.03.15 [react][javascript] gps 위치 얻기 위도 경도 latitude/longitude (0) 2020.03.09 [react] react-starter-kit에 bootstrap 적용 시키기. (0) 2020.03.09 How to fix the ERROR that 'net::ERR_CONNECTION_REFUSED' on Node.js? (0) 2020.02.05 Error: Plugin/Preset files are not allowed to export objects, only functions. (0) 2020.01.10