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.
18 lines
658 B
18 lines
658 B
import { NavigationContainer } from '@react-navigation/native';
|
|
import React, { Component } from 'react';
|
|
import { Platform, StyleSheet, Text, View, YellowBox } from 'react-native';
|
|
|
|
import { createStackNavigator } from "@react-navigation/stack";
|
|
import RainSharingDataScreen from '../screens/RainSharingDataScreen';
|
|
import SharingDataScreen from '../screens/SharingDataScreen';
|
|
|
|
const Stack = createStackNavigator();
|
|
|
|
function RainSharingDataNavigator() {
|
|
return (
|
|
<Stack.Navigator>
|
|
<Stack.Screen name="RainSharingData" component={RainSharingDataScreen} />
|
|
</Stack.Navigator>
|
|
);
|
|
}
|
|
export default RainSharingDataNavigator;
|