Clean up middleware

This commit is contained in:
Rodrigo Pedroso 2019-06-22 22:19:13 -04:00
commit 466cde06b1
3 changed files with 10 additions and 22 deletions

View file

@ -0,0 +1,9 @@
import React from 'react'
import ReactDOM from 'react-dom'
import List from '../../components/List'
it('renders without crashing', () => {
const div = document.createElement('div')
ReactDOM.render(<App />, div)
ReactDOM.unmountComponentAtNode(div)
})