blob: 6e76cf08fa322824304bb5f9d58c14f911626bec (
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
|
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;
|