15 lines
252 B
TypeScript
15 lines
252 B
TypeScript
import {
|
|
ReduxTokenAuthState
|
|
} from './types'
|
|
|
|
const initialState: ReduxTokenAuthState = {
|
|
currentUser: {
|
|
isSignedIn: false,
|
|
isLoading: false,
|
|
hasVerificationBeenAttempted: false,
|
|
attributes: {},
|
|
},
|
|
}
|
|
|
|
export default initialState
|