mirror of
https://github.com/yldio/copilot.git
synced 2024-12-26 03:40:04 +02: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);
|
||
|
});
|