일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- context
- next13 head
- react-helmet
- Nextjs
- React 공식문서
- Babel
- React 18
- background tab
- RTK Query
- React 18 Nextjs
- hook
- react
- react hook
- getUTCDate
- React18
- Next13
- React API 참고서
- CSS
- codingtest
- 고급안내서
- React 고급안내서
- background setttimeout
- Javascript
- Programmers
- Render Props
- React 고급 안내서
- Nextjs React 18
- background setInterval
- background: url
- notFound()
Archives
- Today
- Total
akjfal
Functions are not valid as a React child. This may happen if you return a Component instead of <Component /> from render. 본문
react/react 에러
Functions are not valid as a React child. This may happen if you return a Component instead of <Component /> from render.
akjfal 2019. 11. 23. 12:28
함수 호출을 잘 못 했을때 발생한다.
문제 예제)
import { Layout } from '../Component'
export function Main(){
const Bar = () => {
return (
<div>
App bar
</div>
)
}
return(
// <Layout Bar={Bar} /> // 문제 코드
<Layout Bar={<Bar>} /> // 정상 코드
...
)
}
Bar의 선언이 잘못되어 발생했다. 함수 선언이 제대로 되어있느닞 확인해보자
'react > react 에러' 카테고리의 다른 글
Comments