does this work with react-native 0.26.0?
Closed this issue · 2 comments
masterkrang commented
react-native 0.26.0
`
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
TouchableHighlight
} from 'react-native';
let SortableListView = require('react-native-sortable-listview');
class SortableListViewExample extends Component {
render() {
return (
<View style={styles.container}>
</View>
);
}
}
AppRegistry.registerComponent('SortableListViewExample', () => SortableListViewExample);
`
thomascrown commented
Any News on this? Same thing for me
deanmcpherson commented
Hey there, PR was just accepted that should resolve this. RN 0.26 deprecated requiring react from the react-native package.