implementing logic of application

This commit is contained in:
gustavo-em
2022-03-01 16:29:41 -03:00
parent 98e26de42e
commit ee570630ac
6 changed files with 61 additions and 53 deletions

View File

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