This commit is contained in:
Rodrigo Pedroso 2019-06-22 21:57:18 -04:00
commit 5c7411594f
15 changed files with 5 additions and 64 deletions

View file

@ -2,10 +2,10 @@ import React from 'react'
import ReactDOM from 'react-dom'
// import './index.css'
import { Provider } from 'react-redux'
import store from './js/store/index'
import App from './js/components/App.jsx'
import store from './store/index'
import App from './components/App.jsx'
import * as serviceWorker from './serviceWorker'
import { addArticle } from "./js/actions/index"
import { addArticle } from "./actions/index"
window.store = store
window.addArticle = addArticle