fix(docs): closing the input tag (#345)

This commit is contained in:
John Lindquist
2016-11-29 13:56:04 +01:00
committed by Yoshua Wuyts
parent cb94fc8d5b
commit 911eaf397a
+1 -1
View File
@@ -140,7 +140,7 @@ const mainView = (state, prev, send) => html`
<h1>Title: ${state.title}</h1>
<input
type="text"
oninput=${(e) => send('update', e.target.value)}>
oninput=${(e) => send('update', e.target.value)}/>
</main>
`