@s20.ai/safecam-360-rn
Version:
A React Native component to view the interior panorama and exterior 360 degree views of a product featuring suppport for hotspots. Compatible with Android and iOS
23 lines (21 loc) • 862 B
JavaScript
/*
* Copyright © 2022 S20.AI India Pvt. Ltd.
* Contact - origin@s20.ai
* License - Licensed as per https://docs.s20.ai/license.html
*/
import { configureStore, combineReducers, applyMiddleware } from '@reduxjs/toolkit';
import currentViewReducer from "./reducers/currentViewReducer"
import currentHotspotReducer from './reducers/currentHotspotReducer';
import hotspotModeReducer from './reducers/hotspotModeReducer';
import hotspotDetailReducer from './reducers/hotspotDetailReducer';
import messageHintReducer from './reducers/messageHintReducer';
const store = configureStore({
reducer:{
currentView: currentViewReducer,
currentHotspot: currentHotspotReducer,
hotspotMode: hotspotModeReducer,
hotspotDetailMode: hotspotDetailReducer,
messageHint: messageHintReducer
}
});
export default store;