Repository Mobile nawakara use react native
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
/**
|
|
|
|
* @format
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { AppRegistry } from 'react-native';
|
|
|
|
import App from './src/App';
|
|
|
|
import { name as appName } from './app.json';
|
|
|
|
import { LogBox } from 'react-native';
|
|
|
|
import { PaperProvider, useTheme } from 'react-native-paper';
|
|
|
|
|
|
|
|
LogBox.ignoreLogs(['Warning: Failed prop type: Invalid prop `role`']); // Ignore log notification by message
|
|
|
|
LogBox.ignoreAllLogs();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default function Main() {
|
|
|
|
return (
|
|
|
|
<PaperProvider>
|
|
|
|
<App />
|
|
|
|
</PaperProvider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AppRegistry.registerComponent(appName, () => App);
|