Skip to content

Commit

Permalink
fixes #1 'ReactLoadableSSRAddon is not a constructor'
Browse files Browse the repository at this point in the history
  • Loading branch information
themgoncalves committed Sep 19, 2018
1 parent b402189 commit 5adf372
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions source/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
* @version 0.1.0
*/

export { default } from './ReactLoadableSSRAddon';
export { default as getBundles } from './getBundles';
import ReactLoadableSSRAddon from './ReactLoadableSSRAddon';
import getBundles from './getBundles';

module.exports = ReactLoadableSSRAddon;
exports.getBundles = getBundles;

0 comments on commit 5adf372

Please sign in to comment.