initial commit, completed 40% of first milestone

This commit is contained in:
Amruth Pillai
2020-03-25 02:52:24 +05:30
parent dfeb67cda9
commit 25a6740c24
36 changed files with 55170 additions and 154 deletions

View File

@ -1,17 +1,19 @@
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import './assets/tailwind/tailwind.css';
import * as serviceWorker from './serviceWorker';
import './index.css';
import { AppProvider } from './context/AppContext';
import App from './components/App/App';
ReactDOM.render(
<React.StrictMode>
<App />
<AppProvider>
<App />
</AppProvider>
</React.StrictMode>,
document.getElementById('root')
document.getElementById('root'),
);
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker.unregister();