mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
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)
|
|
})
|