전체 글

React

react-redux

redux공식 사이트 https://redux.js.org/introduction/getting-started/ Getting Started with Redux | Redux Introduction > Getting Started: Resources to get started learning and using Redux redux.js.org Rdux를 쓰는 이유 1. props를 전달, 전달, 전달해야 하는 문제를 해결 할 수 있다. react앱을 작성하다보면 props를 전달, 전달, 전달해야 하는 경우가 생긴다. 리덕스를 사용하면 이 문제를 해결할 수 있다. A -> B -> C로 전달하던 값을 A -> C로 한번에 전달 가능한 것이다. 2. 코드가 강하게 coupling되어있는 경우 decoupl..

React

React-bootstrap .css안먹을때

react-bootstrap에서 import한 .css파일이 빌드 시 안먹는 문제가 발생했다. 빌드될 때 동적인 코드가 정적으로 바뀌면서 바뀌면서 우선순위 등 뭔가 꼬인 것 같다. react-bootstrap에서 css를 custom할 때에는 공식 사이트처럼 flat button

javascript

IE에서 download attribute 사용하기

참고 stackoverflow https://stackoverflow.com/questions/18394871/download-attribute-on-a-tag-not-working-in-ie/56300991#56300991 다운로드

우주유령
우주