From f98be4ca3816dcad16029fee30b66c9219c4cd57 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Thu, 15 Apr 2021 23:16:16 +0530 Subject: laid out the BillingForm elements in a sexy way --- src/components/BillingPage.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/components/BillingPage.js (limited to 'src/components/BillingPage.js') 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 ( + <> + + + ); +} + +export default BillingPage; -- cgit v1.2.3