Skip to content

Commit

Permalink
Remove expense data
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusschroeter committed Feb 26, 2019
1 parent 94488f3 commit 164666a
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,8 @@ import AppRouter from "./routers/AppRouter"
import './styles/App.css';
import { Provider } from "react-redux"
import configureStore from "./store/configureStore"
import { addExpense } from "./actions/expenses"
// import { setTextFilter } from "./actions/filters"


const store = configureStore()

store.dispatch(addExpense({ description: "Water bill", amount: 30, createdAt: 100 }))
store.dispatch(addExpense({ description: "Stone bill", amount: 10, createdAt: 300 }))
store.dispatch(addExpense({ description: "Heating bill", amount: 20, createdAt: 200 }))

class App extends Component {
render() {
return (
Expand Down

0 comments on commit 164666a

Please sign in to comment.