From 8883eacd2a5e2f3f5637a6b71123dfcb2a64c3d5 Mon Sep 17 00:00:00 2001 From: Indrajith K L Date: Thu, 12 Dec 2019 19:31:50 +0530 Subject: :fire: :zap: Major Update * Adds Actions, Redicers and Middlewares * Adds Http Service * Adds Cancel option for Http Service * Adds HOC's for API Loader, Sidebar and Headers * Adds Random key generator for Routes --- src/actions/login.action.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/actions/login.action.js (limited to 'src/actions/login.action.js') diff --git a/src/actions/login.action.js b/src/actions/login.action.js new file mode 100644 index 0000000..3468e4e --- /dev/null +++ b/src/actions/login.action.js @@ -0,0 +1,16 @@ +import { LOGIN_REQUEST, LOGIN_SUCCESS } from "../utils/constants"; + + +export const loginRequest = (payload)=>{ + return { + type: LOGIN_REQUEST, + ...payload + }; +} + +export const loginSuccess = (payload)=>{ + return { + type: LOGIN_SUCCESS, + ...payload + }; +} \ No newline at end of file -- cgit v1.2.3