Initial commit of create-razzle-app

This commit is contained in:
2018-07-24 22:26:01 -06:00
commit 502deb92d0
15 changed files with 8147 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import App from './App';
import React from 'react';
import ReactDOM from 'react-dom';
import MemoryRouter from 'react-router-dom/MemoryRouter';
describe('<App />', () => {
test('renders without exploding', () => {
const div = document.createElement('div');
ReactDOM.render(
<MemoryRouter>
<App />
</MemoryRouter>,
div
);
});
});