Skip to content

Commit

Permalink
index.js to use es5 syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tomkp committed Jul 14, 2015
1 parent 88c02e6 commit d69f73c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions demo/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ React.render(React.createElement(Example, null), document.body);
},{"../":2,"react":162}],2:[function(require,module,exports){
"use strict";

var _interopRequire = function (obj) { return obj && obj.__esModule ? obj["default"] : obj; };

var SplitPane = _interopRequire(require("./lib/SplitPane"));
var SplitPane = require("./lib/SplitPane");

module.exports = SplitPane;

Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import SplitPane from './lib/SplitPane';
var SplitPane = require('./lib/SplitPane');

module.exports = SplitPane;

0 comments on commit d69f73c

Please sign in to comment.