Skip to content

Commit

Permalink
fix(ReactPickerView): Change iOS and Android interface to Unimplement…
Browse files Browse the repository at this point in the history
…edView

ReactPicker provides access to native selector UI components for React Native JavaScript applications.

Fixes #231
  • Loading branch information
ebragge authored and rozele committed May 25, 2016
1 parent 0780347 commit 22b52e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 16 deletions.
9 changes: 1 addition & 8 deletions js/Components/Picker/PickerAndroid.windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,4 @@
*/
'use strict';

var React = require('React');

var PickerAndroid = React.createClass({
render: function() {
},
});

module.exports = PickerAndroid;
module.exports = require('UnimplementedView');
9 changes: 1 addition & 8 deletions js/Components/Picker/PickerIOS.windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,4 @@
*/
'use strict';

var React = require('React');

var PickerIOS = React.createClass({
render: function() {
},
});

module.exports = PickerIOS;
module.exports = require('UnimplementedView');

0 comments on commit 22b52e2

Please sign in to comment.