Files
examples/with-preact/App.js
2020-01-20 14:09:13 -08:00

20 lines
381 B
JavaScript

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function App() {
return (
<View style={styles.container}>
<Text>Demo Preact + Expo web</Text>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});