layout router, sagas, reducers, html structure

This commit is contained in:
Alexander Wong
2017-08-29 16:55:44 -06:00
parent f1972b5e46
commit aaad6ea3eb
19 changed files with 335 additions and 79 deletions
+8
View File
@@ -0,0 +1,8 @@
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);
});