FAQ
How I can add firebase authentication methods in another variant(Nextjs, Typescript)?
import {auth as firebaseAuth} from '../services/auth/firebase/firebase';const firebaseCheck = () => new Promise((resolve) => { firebaseAuth.onAuthStateChanged((authUser) => { if (authUser) { dispatch({ type: UPDATE_AUTH_USER, payload: { authType: AuthType.FIREBASE, uid: authUser.uid, displayName: authUser.displayName, email: authUser.email, role: defaultUser.role, photoURL: authUser.photoURL, token: authUser.refreshToken, }, }); } resolve(); }); return Promise.resolve(); });const checkAuth = () => { Promise.all([firebaseCheck()]).then(() => { setLoading(false); dispatch({type: USER_LOADED}); }); };
Is there any way to remove the menus from the left sidebar? what all files do I need to remove it from?
How I can remove other authentication methods (Next.js)?
How I can remove other authentication methods (CRA)?
How I can remove the customizer(Theme) button?
How I can access the old version of the crema?
Which icon package is used for the sidebar menu icons?
How I can use a single widget/component of the Crema?
How easy is it to extract the Mail App into my own project?
How can I use found-relay instead of react-router-dom?
Last updated