Tuesday, 2 July 2019

Prevents React App from Flash During Firebase/API Calls

const store = createStore(     rootReducer,     compose(         applyMiddleware(             thunk.withExtraArgument({                 getFirestore,                 getFirebase             })         ),         reduxFirestore(fbConfig),         reactReduxFirebase(fbConfig, { attachAuthIsReady: true }),         window.__REDUX_DEVTOOLS_EXTENSION__         && window.__REDUX_DEVTOOLS_EXTENSION__()     ) );
store.firebaseAuthIsReady.then(() => {     ReactDOM.render(         <Provider store={store}>             <App />         </Provider>,         document.getElementById('root')     ); });

No comments:

Setup Windows Local Account without the Internet

During the Windows setup,  On the WiFi screen, press SHIFT + F10  or  FN + SHIFT + F10  This will open the command prompt window with admini...