bigbluebutton-tablet/App.tsx
2022-02-24 16:03:28 -03:00

22 lines
623 B
TypeScript

import 'react-native-gesture-handler';
import * as React from 'react';
import { StyleSheet, Platform, LogBox } from 'react-native';
import { Routes } from './react-native/app/routes/component';
import { PortalContextContainer } from './react-native/app/contexts/portals/container';
export default function App() {
React.useEffect(()=>{
LogBox.ignoreLogs([
"[react-native-gesture-handler] Seems like you\'re using an old API with gesture components, check out new Gestures system!",
]);
})
return (
<>
<PortalContextContainer>
<Routes/>
</PortalContextContainer>
</>
);
}