Created
July 17, 2021 15:28
-
-
Save DZuz14/0fe019eb660fbfa8291060ffec0837c1 to your computer and use it in GitHub Desktop.
config.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const formData = { | |
success: 'Hooray! Your form submitted.', | |
fields: [ | |
{ | |
name: 'name', | |
type: 'text', | |
placeholder: 'Dana Scully', | |
value: '' | |
}, | |
{ | |
name: 'location', | |
type: 'text', | |
placeholder: 'New York', | |
value: '' | |
}, | |
{ | |
name: 'email', | |
type: 'email', | |
placeholder: '[email protected]', | |
value: '' | |
}, | |
{ | |
name: 'message', | |
type: 'textarea', | |
placeholder: 'Enter your message...', | |
value: '' | |
} | |
] | |
} | |
export default formData |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment