diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-14 20:29:54 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-14 20:29:54 +0530 |
commit | ee824f566add80998e2530f7bec54ff4d7a1471d (patch) | |
tree | 4b7d1da5908baf8e5e0ef6b67ecdca3f09296a86 /src/components/Form/Form.js | |
parent | 4c92b12bcb886507d5db738a27bd08e7654f8bfa (diff) |
Played around with forms
Diffstat (limited to 'src/components/Form/Form.js')
-rw-r--r-- | src/components/Form/Form.js | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/src/components/Form/Form.js b/src/components/Form/Form.js new file mode 100644 index 0000000..1261e4b --- /dev/null +++ b/src/components/Form/Form.js @@ -0,0 +1,56 @@ +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 ( + <form onSubmit={ + (event) => { + event.preventDefault(); + console.log(itemValue, descValue); + } + }> + + <label> + Item: <input type="text" value={itemValue} onChange={ + (event) => { + setItemValue(event.target.value); + } + } /> + </label> + + <label> + Description: <input type="text" value={descValue} onChange={ + (event) => { + setDescValue(event.target.value); + } + } /> + </label> + + <input type="submit" value="add" /> + + </form> + ) +} + +export default BillingForm; |