mirror of
https://github.com/gosticks/react-table.git
synced 2025-10-16 11:55:36 +00:00
10 lines
241 B
JavaScript
Executable File
10 lines
241 B
JavaScript
Executable File
import React from 'react'
|
|
import ReactDOM from 'react-dom'
|
|
import App from './App'
|
|
|
|
it('renders without crashing', () => {
|
|
const div = document.createElement('div')
|
|
ReactDOM.render(<App />, div)
|
|
ReactDOM.unmountComponentAtNode(div)
|
|
})
|