let initialState = {
emailText: '',
passText: '',
user: {},
isAuth: false,
};
const authReducer = (state = initialState, action) => {
switch (action.type) {
case LOGOUT: {
return {
state: initialState,
}
}