Project initialization

This commit is contained in:
Rodrigo Pedroso 2019-06-19 12:08:06 -04:00
commit b794708e2e
14 changed files with 9044 additions and 0 deletions

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