Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { State } from './reducer';
export const getState = ( state: State ) => state;
export const getCurrentUser = ( state: State ) => state.currentUser;
export const isCurrentUserLoggedIn = ( state: State ) => !! state.currentUser?.ID;