react-native-acoustic-connect
Version:
React native plugin for Acoustic Connect
16 lines (14 loc) • 610 B
JavaScript
import React from 'react';
import { NativeBaseProvider } from 'native-base';
import { BaseTheme } from './src/theme';
import config from './nativebase.config';
import { Root } from './src/components/RootComponent';
import { LogBox } from 'react-native';
LogBox.ignoreLogs(['MasonaryLayout','Examples','Example','AvatarGroup','memoizedProps','ExpoLinearGradient','RCT','VirtualizedLists','aria-label for accessibility']); // Ignore log notification by message
export default function App() {
return (
<NativeBaseProvider theme={BaseTheme} config={config}>
<Root />
</NativeBaseProvider>
);
}