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 text = require('./text.js') | |
const image = require('./image.js') | |
const helper = { | |
text: text, | |
image: image | |
} | |
export default helper; | |
export {text, image}; |
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
parameter: | |
--fix "$FilePath$" | |
Working Directory: | |
$ProjectFileDir$ | |
To configure go to : File => Settings => Tools => External Tools |
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
/** | |
* All available css cursor | |
*/ | |
.cursor-alias { | |
cursor: alias; | |
} | |
.cursor-all-scroll { | |
cursor: all-scroll; | |
} |