Skip to content

Instantly share code, notes, and snippets.

View ayhanbasmisirli's full-sized avatar
👨‍💻
I may be slow to respond.

ayhanbasmisirli ayhanbasmisirli

👨‍💻
I may be slow to respond.
View GitHub Profile
@ayhanbasmisirli
ayhanbasmisirli / App.js
Last active November 5, 2019 21:45
React Redux Counter Example
import React from 'react';
import './App.css';
import Counter from './Counter';
import { Provider } from 'react-redux';
import { createStore } from 'redux';
const initialState = {
count: 0
};
function reducer(state = initialState, action) {
console.log('reducer', state, action);