We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e296d15 commit 8207e9fCopy full SHA for 8207e9f
examples/Basic/index.ios.js
@@ -15,7 +15,7 @@ import {
15
View,
16
Dimensions,
17
} from 'react-native';
18
-import SortableList from './src/SortableList';
+import SortableList from 'react-native-sortable-list';
19
20
const window = Dimensions.get('window');
21
@@ -63,7 +63,7 @@ const data = {
63
},
64
};
65
66
-class Example extends Component {
+class Basic extends Component {
67
render() {
68
return (
69
<View style={styles.container}>
@@ -196,4 +196,4 @@ const styles = StyleSheet.create({
196
197
});
198
199
-AppRegistry.registerComponent('Example', () => Example);
+AppRegistry.registerComponent('Basic', () => Basic);
0 commit comments