오류해결2 [React] Error in function createFiberFromTypeAndProps in ./node_modules/react-dom/cjs/react-dom.development.js 해결 개츠비 개발 도중 발생한 에러 나의 경우는 1. 대문자로 시작하지 않음 2. export default를 작성하지 않음. 이 두 가지가 문제였다. 1. const test 는 const Test 와 같이 작성되어야 한다. const test = () => { //에러 return ( This is a test page! ) } ---------------------------------------- // 올바른 코드 const Test = () => { return ( This is a test page! ) } 2. 위 코드에서는 export default가 없다. 아래와 같이 수정해야 한다. const Test = () => { return ( This is a test page! ) } export.. 2022. 6. 19. Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. 해결 Run Configurations 에 debug가 없어서 생기는 문제 해결 : application.properties에 debug 설정 추가 logging.level.org.springframework=debug logging.level.org.springframework.web=debug 2022. 5. 20. 이전 1 다음