pixiv.moe
Version:
A pinterest-style layout site, shows illusts on [pixiv.net](http://pixiv.net) order by popularity. Written with React.
23 lines (18 loc) • 506 B
text/typescript
import { combineReducers } from 'redux';
import auth, { IAuthState } from '@/reducers/auth';
import gallery, { IGalleryState } from '@/reducers/gallery';
import illust, { IIllustState } from '@/reducers/illust';
import locale, { ILocaleState } from '@/reducers/locale';
const reducers = combineReducers({
auth,
gallery,
illust,
locale
});
export interface ICombinedState {
auth: IAuthState;
gallery: IGalleryState;
illust: IIllustState;
locale: ILocaleState;
}
export default reducers;