use fancier className notation everywhere

This commit is contained in:
Nate Goldman
2016-03-04 19:06:40 -08:00
parent 4e1de57f55
commit b913997fad
4 changed files with 23 additions and 23 deletions

View File

@@ -18,9 +18,9 @@ function App (state, dispatch) {
}
return hx`
<div className="app">
<div.app>
${Header(state, dispatch)}
<div className="content">${getView()}</div>
<div.content>${getView()}</div>
</div>
`
}