Created
December 18, 2019 10:57
-
-
Save tobob/2c4908ad923561cf25b037e95ce51663 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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