Last active
November 20, 2020 14:07
-
-
Save GuilhermeLis/d8a9af939d77fb5394bcb9aaba8eafdc to your computer and use it in GitHub Desktop.
Revisions
-
Guilherme Lisboa renamed this gist
Nov 20, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
Guilherme Lisboa created this gist
Nov 20, 2020 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,20 @@ import React from 'react'; import { Provider } from 'react-redux'; import { PersistGate } from 'redux-persist/integration/react'; import { store, persistor } from './store'; import Routes from './routes'; import './config/ReactotronConfig'; export default function Index() { return ( <Provider store={store}> <PersistGate persistor={persistor}> <Routes /> </PersistGate> </Provider> ); }