Skip to content

Commit

Permalink
refactored React for React 0.24+
Browse files Browse the repository at this point in the history
  • Loading branch information
Annieday committed May 17, 2016
1 parent 8d3ddee commit 630ca47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions BaseComponent.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';

import React from 'react-native';
import React from 'react';

export default class BaseComponent extends React.Component {
_bind(...methods) {
methods.forEach( (method) => this[method] = this[method].bind(this) );
}
}
}

0 comments on commit 630ca47

Please sign in to comment.