custom header bar
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
parent
983555ba20
commit
579db32a92
@ -0,0 +1,21 @@
|
|||||||
|
import React from 'react'
|
||||||
|
import { StyleSheet } from 'react-native'
|
||||||
|
import { createNativeStackNavigator } from '@react-navigation/native-stack';
|
||||||
|
|
||||||
|
import IngredientSelection from '../screens/IngredientSelection';
|
||||||
|
|
||||||
|
const CookingStack = createNativeStackNavigator()
|
||||||
|
|
||||||
|
export default function CookingStackScreen() {
|
||||||
|
return (
|
||||||
|
<CookingStack.Navigator>
|
||||||
|
<CookingStack.Screen
|
||||||
|
name='IngredientSelection'
|
||||||
|
component={IngredientSelection}
|
||||||
|
/>
|
||||||
|
</CookingStack.Navigator>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
const styles = StyleSheet.create({
|
||||||
|
})
|
Loading…
Reference in new issue