Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created July 17, 2021 15:28
Show Gist options
  • Save DZuz14/0fe019eb660fbfa8291060ffec0837c1 to your computer and use it in GitHub Desktop.
Save DZuz14/0fe019eb660fbfa8291060ffec0837c1 to your computer and use it in GitHub Desktop.
config.js
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