aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-16 22:20:43 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-16 22:20:43 +0530
commitf227adee3cff445288bdba66d369a451aa31b58e (patch)
treeefa10970f366b9aa8628b5da656f17ec75b0a901 /src/components/Display
parent034a41ad44144e79c1c58a3b4f8741ddf8d56f8c (diff)
using useState to update array of items to be added in the invoice now
Diffstat (limited to 'src/components/Display')
-rw-r--r--src/components/Display/Display.css3
-rw-r--r--src/components/Display/Display.scss6
-rw-r--r--src/components/Display/ItemsDisplay.js11
3 files changed, 20 insertions, 0 deletions
diff --git a/src/components/Display/Display.css b/src/components/Display/Display.css
new file mode 100644
index 0000000..1b89173
--- /dev/null
+++ b/src/components/Display/Display.css
@@ -0,0 +1,3 @@
+.ItemsDisplay {
+ margin-top: 3rem;
+ margin-bottom: 3rem; }
diff --git a/src/components/Display/Display.scss b/src/components/Display/Display.scss
new file mode 100644
index 0000000..e3d8b7c
--- /dev/null
+++ b/src/components/Display/Display.scss
@@ -0,0 +1,6 @@
+.ItemsDisplay {
+ margin-top: 3rem;
+ margin-bottom: 3rem;
+
+
+}
diff --git a/src/components/Display/ItemsDisplay.js b/src/components/Display/ItemsDisplay.js
new file mode 100644
index 0000000..5e09a5c
--- /dev/null
+++ b/src/components/Display/ItemsDisplay.js
@@ -0,0 +1,11 @@
+import React from "react";
+import "./Display.css";
+
+const ItemsDisplay = () => {
+ return (
+ <div className={"ItemsDisplay"}>
+ </div>
+ )
+}
+
+export default ItemsDisplay;