bigbluebutton-tablet/App.tsx

23 lines
543 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
import {StyleSheet, View, Platform, SafeAreaView} from 'react-native';
import {BigbluebuttonMobile} from 'bigbluebutton-mobile-sdk';
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
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 07:55:10 +08:00
const styles = StyleSheet.create({
bbb: {
marginTop: Platform.select({ios: 20, android: 0}),
flex: 1,
2022-02-16 07:55:10 +08:00
},
});