UNPKG

@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

24 lines (18 loc) 566 B
/* * Copyright © 2022 S20.AI India Pvt. Ltd. * Contact - origin@s20.ai * License - Licensed as per https://docs.s20.ai/license.html */ import types from "../actions/types"; const initialState = null; const currentHotspotReducer = (state = initialState, action) => { switch (action.type) { case types.HOTSPOT.SET_CURRENT_HOTSPOT: return action.data; case types.HOTSPOT.CLEAR_CURRENT_HOTSPOT: return null; default: return state; } }; export default currentHotspotReducer;