mirror of
https://git.rwth-aachen.de/acs/public/villas/web/
synced 2025-03-16 00:00:03 +01: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);
|
||
|
});
|