aboutsummaryrefslogtreecommitdiff
path: root/src/components/App.js
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-14 21:56:22 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-14 21:56:22 +0530
commita008767f428e81669efbfa24497c613c592c361c (patch)
treeaf5d2fb573165da05d8b04c0533b6a7d6955128b /src/components/App.js
parentee824f566add80998e2530f7bec54ff4d7a1471d (diff)
now the products are passed in as props in JSON format
Diffstat (limited to 'src/components/App.js')
-rw-r--r--src/components/App.js22
1 files changed, 20 insertions, 2 deletions
diff --git a/src/components/App.js b/src/components/App.js
index d8e94d3..3d184b2 100644
--- a/src/components/App.js
+++ b/src/components/App.js
@@ -2,15 +2,33 @@ import React from "react";
import Header from "./Header/Header";
import BillingForm from "./Form/Form.js";
+const sampleData = [
+ {
+ "Model": "Kisan Chair",
+ "Description":"Very good chair",
+ "Price":"10000",
+ "Discount":"3%",},
+ {
+ "Model": "Supreme Chair",
+ "Description":"Even better chair",
+ "Price":"2134983",
+ "Discount":"9%",
+ }
+]
+
+console.log("sample data:", sampleData);
+
+
+
const App = () => {
return (
<>
<Header/>
<div className={"root-content"}>
- <BillingForm/>
+ <BillingForm savedItems={sampleData} />
</div>
</>
- )
+ );
}
export default App;