Skip to content

Instantly share code, notes, and snippets.

@ChangJoo-Park
Created February 23, 2016 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChangJoo-Park/2c66a110def61ba6a336 to your computer and use it in GitHub Desktop.
Save ChangJoo-Park/2c66a110def61ba6a336 to your computer and use it in GitHub Desktop.
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
View
} from 'react-native';
var MainView = require('./App/MainView');
class tableViewTest extends Component {
render() {
return (
<View style={styles.container}>
<MainView />
</View>
);
}
}
const styles = StyleSheet.create({
container: {
paddingTop: 30
},
});
AppRegistry.registerComponent('tableViewTest', () => tableViewTest);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment