mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-14 18:37:20 +08: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);
|
|
});
|