Skip to content

Instantly share code, notes, and snippets.

@Abhishek12345679
Created June 17, 2020 10:06
Show Gist options
  • Save Abhishek12345679/2ee369ef649678366f2bbfecc9319da4 to your computer and use it in GitHub Desktop.
Save Abhishek12345679/2ee369ef649678366f2bbfecc9319da4 to your computer and use it in GitHub Desktop.
import React from "react";
import { NavigationContainer } from "@react-navigation/native";
import { AppNavigator,MainStackNavigator } from "../navigation/AppNavigator";
const AppContainer = (props) => {
return (
<NavigationContainer>
<AppNavigator />
</NavigationContainer>
);
};
export default AppContainer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment