Todo List 만들기로 배우는 React(feat.Styled component in emotion) - 1
✔️ 해당 글은 John Ahn님의 인프런강좌 "따라하며 배우는 리액트 A-Z"를 들으며 작성합니다. 시작하기 앞서 JSX란? const greeting = Hi there! JavsScript의 확장문법으로, React의 Element를 생성합니다. UI가 어떻게 생겨야 하는지 설명하기 위해 React와 함께 사용할 것을 권장합니다. JSX는 유효한 모든 JavaScript 표현식을 넣을 수 있습니다. function formatName(user) { return user.firstName + ' ' + user.lastName; } const user = { firstName: 'Harper', lastName: 'Perez' }; const element = ( Hello, {formatName(u..
Study with me
2022. 9. 5. 17:42