25 lines
618 B
TypeScript
25 lines
618 B
TypeScript
import 'react-native-gesture-handler';
|
|
import * as React from 'react';
|
|
|
|
import {LogBox} from 'react-native';
|
|
import {Bootstrap} from './react-native/bootstrap/start/component';
|
|
|
|
import FontAwesomeIcon from 'react-native-vector-icons/FontAwesome5';
|
|
|
|
FontAwesomeIcon.getStyledIconSet('brand').loadFont();
|
|
FontAwesomeIcon.getStyledIconSet('light').loadFont();
|
|
FontAwesomeIcon.getStyledIconSet('regular').loadFont();
|
|
FontAwesomeIcon.getStyledIconSet('solid').loadFont();
|
|
|
|
export default function App() {
|
|
React.useEffect(() => {
|
|
LogBox.ignoreAllLogs();
|
|
}, []);
|
|
|
|
return (
|
|
<>
|
|
<Bootstrap />
|
|
</>
|
|
);
|
|
}
|