목록Personal DB (108)
Silver Library (Archived)
https://stackoverflow.com/questions/21117160/what-is-export-default-in-javascript What is "export default" in JavaScript? File: SafeString.js // Build out our basic SafeString type function SafeString(string) { this.string = string; } SafeString.prototype.toString = function() { return "" + this.string;... stackoverflow.com https://developer.mozilla.org/en-US/docs/web/javascript/reference/statem..
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..