Added job lookup framework to tech console. BOD-95 BOD-96
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import { all, takeLatest, call, put, select } from "redux-saga/effects";
|
||||
import TechActionTypes from "./tech.types";
|
||||
import { client } from "../../App/App.container";
|
||||
import { techLoginStart,techLoginSuccess, techLoginFailure } from "./tech.actions";
|
||||
import axios from "axios";
|
||||
import { all, call, put, select, takeLatest } from "redux-saga/effects";
|
||||
import { selectBodyshop } from "../user/user.selectors";
|
||||
import { techLoginFailure, techLoginSuccess } from "./tech.actions";
|
||||
import TechActionTypes from "./tech.types";
|
||||
|
||||
export function* onSignInStart() {
|
||||
yield takeLatest(TechActionTypes.TECH_LOGIN_START, signInStart);
|
||||
|
||||
Reference in New Issue
Block a user