JavaScript

JavaScript/React

2023.09.13 react 공부 정리

- react에서 props들은 top-down 방향으로 단방향 전달만이 가능하다. 예를 들어, Apps.js에서 아래와 같은 코드가 존재하면 name과 age라는 props들은 해당 App.js로 import된 components으로만 전달이 가능하다. function App() { return } 즉, App.js is the parent and Something.js is the child, and the props can be read in the Something.js component. 전달된 props들은 immutable하고, 오직 parent component에서 전달해주는 것에 rely 한다.

JavaScript/React

2023.08.30 react 공부 정리

JSX is a syntax expression for JS which allows us to treat HTML as expressions; they can be stored in variables, objects, arrays, etc. indes.js works as the entry point of our application 'react-dom'에서 import된 method들은 DOM 과 interact한다. 'react'에서 import된 method들은 DOM과 interact하지 않고, react의 하위구성이 아닌 것들과는 interact하지 않는다. 즉, DOM은 React에 쓰이지만, 그렇다고 해서 React의 일부분인 것은 아니다. 비-react applications에도 쓰이기 때..

selfish_penguin
'JavaScript' 카테고리의 글 목록