You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
504 B
19 lines
504 B
import React from "react";
|
|
import { createNativeStackNavigator } from "@react-navigation/native-stack";
|
|
import MapFeedScreen from "../screens/MapFeedScreen";
|
|
|
|
const Stack = createNativeStackNavigator();
|
|
|
|
const FeedNavigator = () => (
|
|
<Stack.Navigator>
|
|
<Stack.Screen name="Map" component={MapFeedScreen}
|
|
options={{
|
|
title: "Dados à Prova d'água",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}} />
|
|
</Stack.Navigator>
|
|
);
|
|
|
|
export default FeedNavigator;
|