목록Personal DB/Mainly for Front-end (23)
Silver Library (Archived)
index.js 는 하나만 존재하는게 아니라, 필요에 따라 폴더 마다 존재 가능하다. index.js 는 정말 문자 그대로 index 역할에 충실한 특수 파일. 다양하게 쓰이되, index 라는 것에 개념 중점을 두면 좋을 것.
https://doozi316.github.io/errorlog/2019/09/30/error1/ Git push 오류 해결 (Updates were rejected because the tip of your current branch is behind its remote..) doozi316.github.io $ git push -u origin +master
function 으로 시작하는 것이 유일한 것이므로, const 쓰면 뱉어대는 에러 메세지는 곧 무능과도 같다(...) 하지만 절망감에 빠져있기 보다는, const 를 어떻게 적용 해서 props.children 까지 자유로이 합성 가능한지 알아보자. import React from 'react'; function Home() { return ( Hello! ); } export default Home; 이 위의 코드를 const 로 바꿔 볼 생각이다. https://stackoverflow.com/questions/40825010/const-or-let-in-react-component const or let in React component Say I have a React component -- d..
https://ko.reactjs.org/docs/composition-vs-inheritance.html 합성 (Composition) vs 상속 (Inheritance) – React A JavaScript library for building user interfaces ko.reactjs.org 자, 한번 알아보자. 분명 이론으로는 알지만, 어떻게 구현해야 할 지 감이 안잡히는 경우에 유용할 것이다. 이 작업은 "컴포넌트에서 다른 컴포넌트를 담기" 라고 한다. 그럼 어떻게, 합성을 할 수 있을까? 상속에 상속이라는 느낌으로 이해하면 좋을 것 이라 본다. 아래의 코드대로 출력하면, CSS 의 내용물 또한 같이 정상적으로 출력이 가능하다. 1. FancyBorder 를 보면, (props) 가 있다...