Initial commit from Create React App

This commit is contained in:
Patrick Fic
2019-12-03 15:30:25 -07:00
commit 16bd6c3f8a
17 changed files with 10577 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);
});