mirror of
https://github.com/tomru/pdfer.git
synced 2026-03-02 22:17:18 +01:00
9 lines
208 B
TypeScript
9 lines
208 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);
|
|
});
|