mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-03 14:37:21 +01:00
9 lines
202 B
TypeScript
9 lines
202 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)
|
|
})
|