mirror of https://github.com/msgbyte/tailchat
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.
25 lines
463 B
TypeScript
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',
|
|
},
|
|
});
|