react 3

[지식루프 IT공부] 함수와 컴포넌트 차이

1단계: 함수는 계산기 같은 개념입니다.함수는 입력값을 받아서 결과를 계산해주는 도구입니다.function add(a, b) { return a + b;}add(2, 3); // 결과: 5 add 함수는 두 숫자를 받아서 더한 값을 반환합니다.결과는 숫자 5와 같은 값입니다.2단계: 컴포넌트는 화면을 만드는 틀입니다.컴포넌트는 화면에 보여줄 내용을 만드는 React 전용 함수입니다.function Hello() { return 안녕!;}Hello 컴포넌트는 "안녕!"이라는 화면을 보여줍니다.결과는 숫자가 아닌, 화면에 나타나는 HTML 태그 조각입니다.3단계: 함수와 컴포넌트의 비교 표입니다.구분함수컴포넌트생김새function 이름(…) {}function 이름(…) {}반환 결과숫자, 문자열 등 ..

IT공부 2025.04.16

[지식루프 IT공부] 리액트 실행 안될때 해결방법

npm init react-app .  명령어를 실행했으나, 다음과 같은 메시지만 나오고 프로젝트가 생성되지 않았을 때, > npx > create-react-app . You are running create-react-app 5.0.1, which is behind the latest release (5.1.0). We recommend always using the latest version of create-react-app if possible. The latest instructions for creating a new app can be found here: https://create-react-app.dev/docs/getting-started/ Getting Started | Create..

IT공부 2025.04.13

맥북 os 세콰이어 에서 react 프로젝트 생성 실패 시 해결방법

맥북 os 세콰이어에서 node js 를 설치하고 npm run start 를 실행했더니, 이런 에러 메세지가 나왔었습니다. Failed to compile. Module not found: Error: Can't resolve 'web-vitals' in '/Users/danymac/Desktop/hello_react/src' ERROR in ./src/reportWebVitals.js 5:4-24 Module not found: Error: Can't resolve 'web-vitals' in '/Users/danymac/Desktop/hello_react/src' webpack compiled with 1 error One of your dependencies, babel-preset-react-a..

IT공부 2025.02.12