Skip to content

Instantly share code, notes, and snippets.

@splincode
Created May 17, 2020 07:38
Show Gist options
  • Save splincode/e543df607d6a9d583d866c694f2f6090 to your computer and use it in GitHub Desktop.
Save splincode/e543df607d6a9d583d866c694f2f6090 to your computer and use it in GitHub Desktop.
@State<AuthModel>({
name: 'auth',
defaults: {
token: null,
exp: null
}
})
@Injectable()
export class AuthState {
@Selector()
public static token(state: AuthModel): string | null {
return state.token;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment