Created
November 18, 2019 20:10
-
-
Save CarlMungazi/2a72f3d80b78648c94e074386cfd3308 to your computer and use it in GitHub Desktop.
This file contains 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
m.render(document.getElementById('app'), | |
m('form', { | |
onreset: (e) => { | |
console.log('resetting form...') | |
}, | |
onsubmit: (e) => { | |
e.preventDefault(); | |
console.log('submitting form...') | |
}, | |
}, [ | |
m('button', { type: 'reset'}, 'Reset'), | |
m('button', { type: 'submit'}, 'Submit') | |
]) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment