mirror of
https://github.com/yldio/copilot.git
synced 2024-12-25 19:30:05 +02:00
8295bd6882
this shall be a progressive process
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);
|
|
});
|