🔥 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
This commit is contained in:
Indrajith K L
2019-12-12 19:31:50 +05:30
parent f41d980fd8
commit 8883eacd2a
32 changed files with 662 additions and 51 deletions

16
src/shared/loader.hoc.js Normal file
View File

@@ -0,0 +1,16 @@
import React from 'react';
import "./loader.css";
const WithLoader = HocComponent => {
return function ({ ...props }) {
return (
<div className="loader-container">
{props.isLoading && (
<div className="loader"></div>
)}
<HocComponent {...props} />
</div>
);
};
};
export default WithLoader;