/
githubmr
/
facebook-react
Обзор
Документация
Войти
/
githubmr
/
facebook-react
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
main
fixtures/nesting/src/store.js
14 строк
372 B
Dan Abramov
Nesting Fixture (#19531)
07 авг 2020, 04:08
Не верифицирован
07 авг 2020, 04:08
3367298
Код
Авторство
О чём код?
import {createStore} from 'redux'; function reducer(state = 0, action) { switch (action.type) { case 'increment': return state + 1; default: return state; } } // Because this file is declared above both Modern and Legacy folders, // we can import this from either folder without duplicating the object. export const store = createStore(reducer);