login form

This commit is contained in:
2019-01-02 00:24:06 +03:00
parent 28fc6d957e
commit 1529e3a410
15 changed files with 330 additions and 79 deletions

View File

@@ -1,4 +1,8 @@
import { combineReducers } from "redux";
import { auth } from "~redux/auth/reducer";
import { auth, IAuthState } from "~redux/auth/reducer";
export interface IAppState {
auth: IAuthState;
}
export const rootReducer = combineReducers({ auth });