Initial commit: Clean Twilio app project

This commit is contained in:
2025-06-28 10:48:06 +08:00
commit 59d40cc2e0
57 changed files with 20710 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import React from 'react';
import { Provider } from 'react-redux';
import { StatusBar } from 'react-native';
import { store } from '@/store';
import AppNavigator from '@/navigation/AppNavigator';
const App: React.FC = () => {
return (
<Provider store={store}>
<StatusBar
barStyle="dark-content"
backgroundColor="#fff"
translucent={false}
/>
<AppNavigator />
</Provider>
);
};
export default App;