mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:51:08 +08:00
11 lines
283 B
JavaScript
11 lines
283 B
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { document } from 'global';
|
|
import App from './App';
|
|
|
|
it('renders without crashing', () => {
|
|
const div = document.createElement('div');
|
|
ReactDOM.render(<App />, div);
|
|
ReactDOM.unmountComponentAtNode(div);
|
|
});
|