Ejected React project for custom structure

This commit is contained in:
2020-03-26 02:32:32 +05:30
parent 59269eeb93
commit fc92e9564b
14 changed files with 1809 additions and 66 deletions

View File

@@ -0,0 +1,14 @@
'use strict';
// This is a custom Jest transformer turning style imports into empty objects.
// http://facebook.github.io/jest/docs/en/webpack.html
module.exports = {
process() {
return 'module.exports = {};';
},
getCacheKey() {
// The output is always the same.
return 'cssTransform';
},
};