@shopgate/engage
Version:
Shopgate's ENGAGE library.
4 lines • 449 B
JavaScript
import React from'react';import{i18n}from"../../../core/helpers/i18n";import{container,heading,body}from"./ReservationResponse.style";/**
* Renders the reservation error screen.
* @returns {JSX}
*/export function ReservationError(){return React.createElement("div",{className:container},React.createElement("h2",{className:heading},i18n.text('locations.error_title')),React.createElement("p",{className:body},i18n.text('locations.error_copy')));}