aboutsummaryrefslogtreecommitdiff
path: root/src/components/BillingPage.js
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-15 23:16:16 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-15 23:16:16 +0530
commitf98be4ca3816dcad16029fee30b66c9219c4cd57 (patch)
treeae6c2166ad2e04e7046e8abbfdf3cf179a40474d /src/components/BillingPage.js
parent8ab93681fddf6c104d02f5123e293a5da25b311b (diff)
laid out the BillingForm elements in a sexy way
Diffstat (limited to 'src/components/BillingPage.js')
-rw-r--r--src/components/BillingPage.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/components/BillingPage.js b/src/components/BillingPage.js
new file mode 100644
index 0000000..6e76cf0
--- /dev/null
+++ b/src/components/BillingPage.js
@@ -0,0 +1,27 @@
+import React from "react";
+import BillingForm from "./Form/Form.js";
+
+
+const sampleData = [
+ {
+ "Model": "Kisan Chair",
+ "Description": "Very good chair",
+ "Price": "10000",
+ "Discount": ""
+ }, {
+ "Model": "Supreme Chair",
+ "Description": "Even better chair",
+ "Price": "2134983",
+ "Discount": ""
+ }
+];
+
+const BillingPage = () => {
+ return (
+ <>
+ <BillingForm savedItems={sampleData} />
+ </>
+ );
+}
+
+export default BillingPage;