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

21 lines (20 loc) 460 B
import types from "./types"; export const setCurrentMessageOn = (data) => { return { type: types.MESSAGE.SET_CURRENT_MESSAGE_ON, data, }; }; export const setCurrentMessageOff = (data, primary) => { return { type: types.MESSAGE.SET_CURRENT_MESSAGE_OFF, data, primary, }; }; export const clearCurrentMessage = (data) => { return { type: types.MESSAGE.CLEAR_CURRENT_MESSAGE, data, }; };