This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export type MerchantLinksFormData = { | |
| userMerchants: any[]; | |
| }; | |
| export type MerchantLinksFormProps = { | |
| userTitle: string; | |
| merchantsTitle: string; | |
| loading?: boolean; | |
| className?: string; | |
| user?: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const Promise = require('bluebird') | |
| const fp = require('lodash/fp') | |
| const flow = require('lodash/flow') | |
| const addOne = s => new Promise(resolve => { | |
| s = [100, ...s]; | |
| setTimeout(() => resolve(s), 200); | |
| }) | |
| const setSail = s => new Promise(resolve => { | |
| s[2] = s[2] + 14; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| C:\Sites\graphs (master -> origin) | |
| λ npm run deploy | |
| > [email protected] predeploy C:\Sites\graphs | |
| > npm run build | |
| > [email protected] build C:\Sites\graphs | |
| > react-scripts build |