const store = createStore(rootReducer)
function App() {
return (
<Provider store={store}>
<div className="container">
{/*<AuthContainer/>*/}
{ store.auth.state.isLogged
? <AuthContainer/>
: null
}
</div>
</Provider>
);
}