update to standard v8

The only thing we have to change is to self-close tags that don't
contain anything. This wasn't even an explicit change in standard. It
was already a rule, but I think it wasn't getting enforced very well
until a bugfix.
This commit is contained in:
Feross Aboukhadijeh
2016-08-19 01:44:28 -07:00
parent 7c36898f78
commit bb4db2cede
5 changed files with 14 additions and 14 deletions

View File

@@ -81,7 +81,7 @@ module.exports = class App extends React.Component {
var ModalContents = Modals[state.modal.id]
return (
<div key='modal' className='modal'>
<div key='modal-background' className='modal-background'></div>
<div key='modal-background' className='modal-background' />
<div key='modal-content' className='modal-content'>
<ModalContents state={state} />
</div>