개발보드
react-router-dom v6 업그레이드 되면서 달라진 것들
( 후에 정리할거.. ) 🔗 https://velog.io/@soryeongk/ReactRouterDomV6
[ REACT ] ReactDOM.render is no longer supported in React 18
( 후에 정리할 예정 ) 🔗 https://7357.tistory.com/44
[ REACT ] export 'withRouter' (imported as 'withRouter') was not found in 'react-router-dom'
( 후에 정리할 예정 ) 🔗 https://kyung-a.tistory.com/36
[ REACT ] 'react-router-dom' does not contain a default export (imported as 'BrowserRouter')
( 후에 정리할 예정 ) 🔗 https://github.com/remix-run/react-router/issues/7454
🌊 리액트 라우터
( 후에 정리할 예정 ) 🔗 https://velog.io/@wiostz98kr/TIL49-l-React-%EB%A6%AC%EC%95%A1%ED%8A%B8-%EB%9D%BC%EC%9A%B0%ED%84%B0React-Router-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0-Feat.-SPA

[ REACT / SPRING BOOT ] React 와 Spring Boot 연동하기
1. Spring Boot 생성 https://start.spring.io/ 에서 설정하여 생성된 프로젝트를 import 해준다. 빌드가 완료된 후에, 프로젝트를 Run시키면 포트 8080에서 톰캣이 시작되었다는 콘솔 메세지가 뜹니다. http://localhost:8080 에 들어가게 되면, 에러 페이지가 보입니다! 2. React.js 설치 프로젝트 내의 터미널을 키고 코드를 실행해줍니다. cd src/main npx create-react-app kongfront# npx create-react {프로젝트명} 💢 단, 프로젝트명에 대문자가 포함되면 안됩니다 설치가 완료되면, 위와 같이 Spring Boot 프로젝트 내에 React 폴더가 생성됩니다. 해당 폴더 내에 들어가서 npm start 로 프..

[ REACT ] You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1).
실행코드 리액트 기본세팅 코드 쳤는데 오류 뜸 ㄷ npx create-react-app kongfront 에러코드 You are running `create-react-app` 5.0.0, which is behind the latest release (5.0.1). We no longer support global installation of Create React App. Please remove any global installs with one of the following commands: - npm uninstall -g create-react-app - yarn global remove create-react-app The latest instructions for creating a new..