Initial setup

This commit is contained in:
Senad Uka
2019-05-24 14:04:32 +02:00
parent 30f0874490
commit 84443783da
26 changed files with 13324 additions and 1 deletions

9
client/src/App.test.js Normal file
View File

@@ -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);
});