2022-02-17 01:10:13 +08:00
|
|
|
import 'react-native-gesture-handler';
|
2022-02-16 10:45:44 +08:00
|
|
|
import * as React from 'react';
|
2022-02-16 07:55:10 +08:00
|
|
|
|
2022-02-16 22:15:11 +08:00
|
|
|
import {StyleSheet, View, Platform, SafeAreaView} from 'react-native';
|
2022-02-16 10:45:44 +08:00
|
|
|
import {BigbluebuttonMobile} from 'bigbluebutton-mobile-sdk';
|
2022-02-16 22:15:11 +08:00
|
|
|
import { Bootstrap } from './react-native/bootstrap/start/component';
|
2022-02-17 01:10:13 +08:00
|
|
|
import { Routes } from './react-native/app/routes/component';
|
2022-02-16 07:55:10 +08:00
|
|
|
|
2022-02-16 10:45:44 +08:00
|
|
|
export default function App() {
|
2022-02-16 07:55:10 +08:00
|
|
|
return (
|
2022-02-17 01:10:13 +08:00
|
|
|
<>
|
|
|
|
<Routes/>
|
|
|
|
</>
|
2022-02-16 07:55:10 +08:00
|
|
|
);
|
2022-02-16 10:45:44 +08:00
|
|
|
}
|
2022-02-16 07:55:10 +08:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
2022-02-16 10:45:44 +08:00
|
|
|
bbb: {
|
2022-02-16 11:06:08 +08:00
|
|
|
marginTop: Platform.select({ios: 20, android: 0}),
|
2022-02-16 10:45:44 +08:00
|
|
|
flex: 1,
|
2022-02-16 07:55:10 +08:00
|
|
|
},
|
|
|
|
});
|