import * as fromApplication from './reducer';

export interface State {
    application: fromApplication.State;
}

export const logoutReducers = {
    application: fromApplication.reducer
};

export function selectIsLoggedIn(state: State) {
    return state.application.isLoggedIn;
}