[TIL] 20220826

yes·2022년 8월 26일
0

TIL 💌

목록 보기
9/55

오늘은 개발보다 공부에 집중

margin gap의 차이점은 gap의 경우 엘리먼트 요소들의 사이에만 공간(space)을 만든다는 점입니다.

개발하는 애플리케이션의 크기가 커지면 언젠간 파일을 여러 개로 분리해야 하는 시점이 옵니다. 이때 분리된 파일 각각을 '모듈(module)'이라고 부르는데, 모듈은 대개 클래스 하나 혹은 특정한 목적을 가진 복수의 함수로 구성된 라이브러리 하나로 구성됩니다.

Client and Server

In the context of web applications, the client refers to the browser on a user’s device that sends a request to a server for your application code. It then turns the response it receives from the server into an interface the user can interact with.

Server refers to the computer in a data centre that stores your application code, receives requests from a client, does some computation, and sends back an appropriate response


Layout 컴포넌트가 필요한 이유

대부분의 페이지에는 Header, 메뉴바, Footer 등이 들어갑니다.
하지만 모든 페이지에 일일이 헤더, 메뉴바, 푸터를 작성하기에는 번거롭습니다.
컴포넌트로 만들더라도 매번 세 개의 컴포넌트를 넣는 것은 깔끔하지 않죠.
그래서 보통 필요한 컴포넌트를 묶어서 Layout으로 만들어 사용합니다!

0개의 댓글