bigbluebutton-tablet/App.tsx

30 lines
791 B
TypeScript
Raw Normal View History

2022-02-17 01:10:13 +08:00
import 'react-native-gesture-handler';
import * as React from 'react';
2022-02-16 07:55:10 +08:00
2022-02-17 01:10:13 +08:00
import { Routes } from './react-native/app/routes/component';
2022-02-25 03:03:28 +08:00
import { PortalContextContainer } from './react-native/app/contexts/portals/container';
2022-03-02 03:29:41 +08:00
import { LogBox } from 'react-native';
import { Bootstrap } from './react-native/bootstrap/start/component';
2022-03-02 05:38:25 +08:00
import FontAwesomeIcon from 'react-native-vector-icons/FontAwesome5';
2022-03-02 03:29:41 +08:00
2022-03-02 05:38:25 +08:00
FontAwesomeIcon.getStyledIconSet('brand').loadFont();
FontAwesomeIcon.getStyledIconSet('light').loadFont();
FontAwesomeIcon.getStyledIconSet('regular').loadFont();
FontAwesomeIcon.getStyledIconSet('solid').loadFont();
2022-03-02 03:29:41 +08:00
2022-02-16 07:55:10 +08:00
export default function App() {
2022-03-02 03:29:41 +08:00
React.useEffect(()=>{
LogBox.ignoreAllLogs();
}, [])
2022-02-16 07:55:10 +08:00
return (
2022-03-02 03:29:41 +08:00
<>
<Bootstrap/>
2022-02-17 01:10:13 +08:00
</>
2022-03-02 03:29:41 +08:00
);
}