mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-20 17:48:01 +03:00
10 lines
254 B
TypeScript
10 lines
254 B
TypeScript
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);
|
|
});
|