implement prototipe of navigate

This commit is contained in:
gustavo-em
2022-02-16 14:10:13 -03:00
parent 701df1ff80
commit 80b544f270
4 changed files with 59 additions and 11 deletions

View File

@@ -1,14 +1,16 @@
import React from 'react'
import { Text, View } from 'react-native'
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>
<View>
<Text>Bootstrap</Text>
</View>
<Text>a</Text>
<Routes/>
</GestureHandlerRootView>
</>
)