forked from cemaden-educacao/WPD-MobileApp
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
516 B
19 lines
516 B
import React from "react";
|
|
import { createNativeStackNavigator } from "@react-navigation/native-stack";
|
|
import MessagesScreen from "../screens/MessagesScreen";
|
|
|
|
const Stack = createNativeStackNavigator();
|
|
|
|
const MessagesNavigator = () => (
|
|
<Stack.Navigator>
|
|
<Stack.Screen name="Notificação" component={MessagesScreen}
|
|
options={{
|
|
title: "Notificação",
|
|
headerStyle: {
|
|
backgroundColor: "white",
|
|
},
|
|
}} />
|
|
</Stack.Navigator>
|
|
);
|
|
|
|
export default MessagesNavigator;
|