7
0
mirror of https://github.com/pelican-dev/panel.git synced 2025-06-04 13:48:58 +02:00
2019-06-11 23:12:03 -07:00

8 lines
216 B
TypeScript

import { combineReducers } from 'redux';
import flashReducer from './reducers/flash';
import { ReduxState } from '@/redux/types';
export const reducers = combineReducers<ReduxState>({
flashes: flashReducer,
});