@shopgate/engage
Version:
Shopgate's ENGAGE library.
5 lines • 358 B
JavaScript
import{SUBMIT_RESERVATION_REQUEST}from"../constants";/**
* Creates the SUBMIT_RESERVATION_REQUEST action object.
* @param {Object} order The reservation order.
* @return {Object} The SUBMIT_RESERVATION_REQUEST action.
*/function submitReservationRequest(order){return{type:SUBMIT_RESERVATION_REQUEST,order:order};}export default submitReservationRequest;