blob: 6f5b18b74a55936d8a798ff4b44028203ed6d590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
import React from "react";
import AddNewItemForm from "./Form/AddNewItemForm.js";
const sampleData = [
{
"Model": "Kisan Chair",
"Description": "Very good chair",
"Price": 10000,
"Discount": 0
}, {
"Model": "Supreme Chair",
"Description": "Even better chair",
"Price": "2134983",
"Discount": 0
}, {
"Model": "Action Houseware",
"Description": "Not a chair",
"Price": 69,
"Discount": 0
}
];
let addedItems = [];
const getAddedItems = (item) => {
console.log(item);
addedItems.push(item);
console.log(addedItems);
}
const BillingPage = () => {
return (
<>
<AddNewItemForm savedItems={sampleData} addItem={getAddedItems} defGSTValue={18}/>
</>
);
}
export default BillingPage;
|