Files
bigbluebutton-tablet/react-native/bootstrap/start/component.js
2022-02-24 16:03:28 -03:00

15 lines
456 B
JavaScript

import React from 'react'
import { GestureHandlerRootView } from 'react-native-gesture-handler'
import { Routes } from '../../app/routes/component';
//This archive is used to envolve app in contexts, libs, etc..
export const Bootstrap = ()=>{
return (
<>
<GestureHandlerRootView>
<Routes/>
</GestureHandlerRootView>
</>
)
}