Skip to content

Commit

Permalink
Add default export (zenoamaro#374) (zenoamaro#384)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkrolick authored Jul 7, 2018
1 parent 6c0cc6c commit cb099c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ React-Quill v1.0.0
https://github.com/zenoamaro/react-quill
*/
var Quill = require('quill');
var Component = require('./component');

module.exports = require('./component');
module.exports = Component;
module.exports.default = Component;
module.exports.Quill = Quill;
module.exports.Mixin = require('./mixin');
module.exports.Toolbar = require('./toolbar');

0 comments on commit cb099c8

Please sign in to comment.