Skip to content

Commit 039338f

Browse files
committed
Use 'module.exports' instead of 'export default'
1 parent 86d6e7e commit 039338f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const extend = (target, ...sources) => {
2323
return target;
2424
};
2525

26-
export default class extends React.Component {
26+
module.exports = class extends React.Component {
2727
static propTypes = {
2828
options: React.PropTypes.object,
2929
onChange: React.PropTypes.func,

0 commit comments

Comments
 (0)