aboutsummaryrefslogtreecommitdiff
path: root/src/components/BillingPage.js
blob: 066b30b5785c4f0e8e84f64796199823bfc22645 (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
import React from "react";
import AddNewItemForm from "./Form/AddNewItemForm.js";


const sampleData = [
  {
    "Model": "Kisan Chair",
    "Description": "Very good chair",
    "Price": "10000",
    "Discount": ""
  }, {
    "Model": "Supreme Chair",
    "Description": "Even better chair",
    "Price": "2134983",
    "Discount": ""
  }, {
    "Model": "Action Houseware",
    "Description": "Not a chair",
    "Price": "69",
    "Discount": ""
  }
];

const BillingPage = () => {
  return (
    <>
      <AddNewItemForm savedItems={sampleData} />
      <AddNewItemForm savedItems={sampleData} />
      <AddNewItemForm savedItems={sampleData} />
      <AddNewItemForm savedItems={sampleData} />
    </>
  );
}

export default BillingPage;