15 lines
456 B
JavaScript
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>
|
|
</>
|
|
)
|
|
} |