Skip to content

Commit 8207e9f

Browse files
committed
Fix example
1 parent e296d15 commit 8207e9f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/Basic/index.ios.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
View,
1616
Dimensions,
1717
} from 'react-native';
18-
import SortableList from './src/SortableList';
18+
import SortableList from 'react-native-sortable-list';
1919

2020
const window = Dimensions.get('window');
2121

@@ -63,7 +63,7 @@ const data = {
6363
},
6464
};
6565

66-
class Example extends Component {
66+
class Basic extends Component {
6767
render() {
6868
return (
6969
<View style={styles.container}>
@@ -196,4 +196,4 @@ const styles = StyleSheet.create({
196196

197197
});
198198

199-
AppRegistry.registerComponent('Example', () => Example);
199+
AppRegistry.registerComponent('Basic', () => Basic);

0 commit comments

Comments
 (0)