import { IUser } from "./schema";
|
|
|
|
/**
|
|
* The state definition
|
|
*/
|
|
export interface IState {
|
|
user: IUser | null,
|
|
}
|
|
|
|
/**
|
|
* The state implementation
|
|
*/
|
|
export const state: IState = {
|
|
user: null
|
|
};
|