mirror of
https://github.com/docker/awesome-compose.git
synced 2025-11-12 23:14:09 +01: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);
|
|
});
|