You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tailchat/app/App.tsx

25 lines
463 B
TypeScript

import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { StyleSheet, View } from 'react-native';
import { AppMain } from './components/AppMain';
/**
* , expo
*/
export default function App() {
return (
<View style={styles.container}>
<StatusBar style="auto" />
<AppMain />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
},
});