Skip to content

Instantly share code, notes, and snippets.

@tobob
Created December 18, 2019 10:57
Show Gist options
  • Save tobob/2c4908ad923561cf25b037e95ce51663 to your computer and use it in GitHub Desktop.
Save tobob/2c4908ad923561cf25b037e95ce51663 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';
export default class App extends React.Component {
render() {
return (
<ToastProvider>
<Toast />
<AppNavigation />
</ToastProvider>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment