bigbluebutton-tablet/App.tsx

25 lines
618 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-03-04 11:07:36 +08:00
import {LogBox} from 'react-native';
import {Bootstrap} from './react-native/bootstrap/start/component';
2022-03-02 03:29:41 +08:00
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
export default function App() {
2022-03-04 11:07:36 +08:00
React.useEffect(() => {
2022-03-02 03:29:41 +08:00
LogBox.ignoreAllLogs();
2022-03-04 11:07:36 +08:00
}, []);
2022-03-02 03:29:41 +08:00
2022-02-16 07:55:10 +08:00
return (
2022-03-04 11:07:36 +08:00
<>
<Bootstrap />
2022-02-17 01:10:13 +08:00
</>
2022-03-04 11:07:36 +08:00
);
}