UNPKG

react-native-draggablelist

Version:
35 lines (29 loc) 541 B
/** * Sample React Native App * https://github.com/facebook/react-native * @flow */ import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View } from 'react-native'; import Page from './page'; class Example extends Component { render() { return ( <View style={styles.container}> <Page /> </View> ); } } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#F5FCFF', }, }); AppRegistry.registerComponent('Example', () => Example);