mirror of
https://github.com/mitchell/mjfs.us.git
synced 2025-09-14 04:02:06 +00:00
10 lines
248 B
JavaScript
10 lines
248 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);
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
});
|