Slide 47
Slide 47 text
import React from 'react';
import { View, Text, StyleSheet } from 'react-native';
// HTMLͷΑ͏ͳϚʔΫΞοϓͰϨΠΞτͷߏΛఆٛ͢Δ
const App = (props) => (
Hello, React Native!
);
export default App;
// CSSϥΠΫͳࢦఆͰελΠϧΛఆٛ͢Δ
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
});