From 6c598d57b5e1280ff830399cc9a12fbfb58c62f5 Mon Sep 17 00:00:00 2001 From: hokageCodes Date: Sat, 3 Dec 2022 19:01:03 +0000 Subject: [PATCH] hot fix --- frontend/src/pages/ErrorProcessing/error.css | 0 frontend/src/pages/ErrorProcessing/index.jsx | 59 ++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 frontend/src/pages/ErrorProcessing/error.css create mode 100644 frontend/src/pages/ErrorProcessing/index.jsx diff --git a/frontend/src/pages/ErrorProcessing/error.css b/frontend/src/pages/ErrorProcessing/error.css new file mode 100644 index 00000000..e69de29b diff --git a/frontend/src/pages/ErrorProcessing/index.jsx b/frontend/src/pages/ErrorProcessing/index.jsx new file mode 100644 index 00000000..3d2b9b87 --- /dev/null +++ b/frontend/src/pages/ErrorProcessing/index.jsx @@ -0,0 +1,59 @@ +import React from 'react'; +import { FaGreaterThan } from 'react-icons/fa'; +import DashBoardHeader from '../../components/DashBoardHeader'; +import NavigationBar from '../../components/NavigationBar'; + +const styles = { + bgColor: '#1570EF', + titleTextColor: '#101828', + inputwidth: '500px', + sideWidth: '248px', + dasboardwidth: '150px', +}; +const processData = { + status: 'Processing...', + statusHeader: 'Maching data...', + statusMessage: 'imbalancing (s) found so far', + numberOfimbalance: 0, +}; + +const ErrorProcessing = () => ( + <> + +
+
+

+ Processing... +

+

+ Our system is currently reconciling your records and will alert you of + any errors. Please be patient. +

+
+
+

+ Matching data... +

+
+ 0 +

+ imbalance(s) found so far +

+
+
+ + 1% +
+
+
+ +); + +export default ErrorProcessing; \ No newline at end of file