bigbluebutton-tablet/App.tsx
2022-03-01 16:29:41 -03:00

25 lines
503 B
TypeScript

import 'react-native-gesture-handler';
import * as React from 'react';
import { Routes } from './react-native/app/routes/component';
import { PortalContextContainer } from './react-native/app/contexts/portals/container';
import { LogBox } from 'react-native';
import { Bootstrap } from './react-native/bootstrap/start/component';
export default function App() {
React.useEffect(()=>{
LogBox.ignoreAllLogs();
}, [])
return (
<>
<Bootstrap/>
</>
);
}