Skip to content

Instantly share code, notes, and snippets.

@tobob
Created December 18, 2019 10:58
Show Gist options
  • Save tobob/e9999203a0fd3347ced72687f255d5a8 to your computer and use it in GitHub Desktop.
Save tobob/e9999203a0fd3347ced72687f255d5a8 to your computer and use it in GitHub Desktop.
import React from 'react';
import AppNavigation from './AppNavigation';
import {ToastProvider} from './ToastContext';
import Toast from './Toast';
const App = () => (
<ToastProvider>
<Toast />
<AppNavigation />
</ToastProvider>
);
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment