diff options
author | sotech117 <michael_foiani@brown.edu> | 2025-08-28 01:41:53 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2025-08-28 01:41:53 -0400 |
commit | 75dbbb37f6f120fb67bc6f45899a0f441fc9d1cb (patch) | |
tree | 8c4e8ac9a3cf4681ddfe7accfa8c04b83c83dc51 /src/components | |
parent | 9f48e91a5b2feaaf59c690cdb2809f06dca8486f (diff) |
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/Contact.jsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/Contact.jsx b/src/components/Contact.jsx index a3a8ebe..570c0b5 100644 --- a/src/components/Contact.jsx +++ b/src/components/Contact.jsx @@ -101,6 +101,7 @@ export const Contact = () => { required whileFocus={{ scale: 1.02 }} onChange={handleInputChange} + value={formData.name} /> <motion.input type="email" @@ -109,6 +110,7 @@ export const Contact = () => { required whileFocus={{ scale: 1.02 }} onChange={handleInputChange} + value={formData.email} /> <motion.textarea name="message" @@ -116,6 +118,7 @@ export const Contact = () => { required whileFocus={{ scale: 1.02 }} onChange={handleInputChange} + value={formData.message} /> <motion.button |