diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-16 17:37:07 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-16 17:37:07 +0530 |
commit | 03a991b1c59e010253f8673a4aa82c89f7bc7d13 (patch) | |
tree | 60e7e7aa0e429a68392924949e4affeb0c344dd4 /src/components/BillingPage.js | |
parent | d105cf0f6dd91d7d7a38eb7fe9193f6c0e5d1f7f (diff) |
added validation to AddNewItemForm
Diffstat (limited to 'src/components/BillingPage.js')
-rw-r--r-- | src/components/BillingPage.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/BillingPage.js b/src/components/BillingPage.js index 066b30b..f4b2b11 100644 --- a/src/components/BillingPage.js +++ b/src/components/BillingPage.js @@ -6,18 +6,18 @@ const sampleData = [ { "Model": "Kisan Chair", "Description": "Very good chair", - "Price": "10000", - "Discount": "" + "Price": 10000, + "Discount": 0 }, { "Model": "Supreme Chair", "Description": "Even better chair", "Price": "2134983", - "Discount": "" + "Discount": 0 }, { "Model": "Action Houseware", "Description": "Not a chair", - "Price": "69", - "Discount": "" + "Price": 69, + "Discount": 0 } ]; |