add libs with depend of navigation drawer and refactor app.tsx

This commit is contained in:
gustavo-em
2022-02-16 11:15:11 -03:00
parent 006bc02da5
commit f12d0af084
9 changed files with 795 additions and 23 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react'
import { Text, View } from 'react-native'
import { GestureHandlerRootView } from 'react-native-gesture-handler'
export const Bootstrap = ()=>{
return (
<>
<GestureHandlerRootView>
<View>
<Text>Bootstrap</Text>
</View>
</GestureHandlerRootView>
</>
)
}