60c95659a0
* Add method for sending tx to wallet * Setup registry-sdk in onboarding app * Build message for bond creation * Get response on signing and broadcasting tx * Run eject script * Display snackbar on creating bond * Add fallback to webpack config file * Handle review changes * Handle errors with snackbar
13 lines
299 B
JavaScript
13 lines
299 B
JavaScript
// 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';
|
|
},
|
|
};
|