Skip to content

Instantly share code, notes, and snippets.

const text = require('./text.js')
const image = require('./image.js')
const helper = {
text: text,
image: image
}
export default helper;
export {text, image};
@ThatCheck
ThatCheck / webstorm-eslint-fix
Created January 11, 2016 16:40
Add command to run eslint --fix on webstorm (or any jetbrains IDE like phpStorm)
parameter:
--fix "$FilePath$"
Working Directory:
$ProjectFileDir$
To configure go to : File => Settings => Tools => External Tools
@ThatCheck
ThatCheck / cursor.css
Created July 16, 2015 10:01
CSS for all cursor
/**
* All available css cursor
*/
.cursor-alias {
cursor: alias;
}
.cursor-all-scroll {
cursor: all-scroll;
}