submodule fix

This commit is contained in:
Rene
2019-07-31 00:00:46 +02:00
parent 2c5cc23919
commit 2b90b89598
38 changed files with 24809 additions and 2 deletions
@@ -0,0 +1,9 @@
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);
});