dev/web
-
디자이너-개발자 협업 라이브러리 react-sketchappdev/web 2019. 10. 10. 10:04
https://github.com/airbnb/react-sketchapp airbnb/react-sketchapp render React components to Sketch ⚛️💎. Contribute to airbnb/react-sketchapp development by creating an account on GitHub. github.com 소개글 https://brunch.co.kr/@designforhuman/23 [번역] 코드로 디자인을 by Airbnb React Sketch.app 오픈소스 라이브러리 공개 | 원문: Painting with Code: Introducing our new open source library React Sketch.app. 오늘 우리는 디자인 시스템을 만..
-
리엑트에서 부트스트랩 사용 - reactstrapdev/web 2019. 8. 5. 19:05
https://www.npmjs.com/package/reactstrap reactstrap React Bootstrap 4 components www.npmjs.com 설치 npm install --save bootstrap npm install --save reactstrap react react-dom 임포트 import 'bootstrap/dist/css/bootstrap.css'; 사용 import { Button } from 'reactstrap'; 사용가능한 컴포넌트 목록 https://reactstrap.github.io/components/alerts/ reactstrap - Alerts Alerts This is a primary alert — check it out! This is a..
-
promise return multiple valuesdev/web 2019. 5. 14. 11:01
https://stackoverflow.com/a/41382855/3543411 Can promises have multiple arguments to onFulfilled? I'm following the spec here and I'm not sure whether it allows onFulfilled to be called with multiple arguments. For example: promise = new Promise(function(onFulfilled, onRejected){ onFulfil... stackoverflow.com
-
async.apply 로 함수에 parameter 전달dev/web 2019. 4. 2. 15:33
async 호출 외부의 값을 함수 parameter 로 전달할때 async.apply 를 사용 waterfall 의 첫번째 함수에 전달할 파라메터나, 각 함수에 원하는 parameter 를 전달하기가 쉬움 https://caolan.github.io/async/docs.html#apply async - Documentation import applyEach from 'async/applyEach'; Applies the provided arguments to each function in the array, calling callback after all functions have completed. If you only provide the first argument, fns, then it will ..