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