import React, { useState } from "react"; import "./Form.css"; const BillingForm = () => { /* const sampleData = [ { "Model": "Kisan Chair", "Description":"Very good chair", "Price":"10000", "Discount":"3%" }, { "Model": "Supreme Chair", "Description":"Even better chair", "Price":"2134983", "Discount":"9%" } ] */ const [itemValue, setItemValue] = useState(""); const [descValue, setDescValue] = useState(""); return (
) } export default BillingForm;