UNPKG

@s20.ai/safecam-360-rn-lite

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

21 lines (19 loc) 758 B
/* * 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'; const store = configureStore({ reducer:{ currentView: currentViewReducer, currentHotspot: currentHotspotReducer, hotspotMode: hotspotModeReducer, hotspotDetailMode: hotspotDetailReducer, } }); export default store;