thomasboyt / react-spin

React component wrapper for spin.js
27 stars 23 forks source link

Have a default export for common js as well #13

Open SimenB opened 8 years ago

SimenB commented 8 years ago

Allows CommonJS users to not have to worry about .default interop

-exports.default = ReactSpinner;
\ No newline at end of file
+exports.default = ReactSpinner;
+module.exports = exports['default'];
\ No newline at end of file