UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

10 lines (9 loc) 263 B
import React from "react"; interface MessageProps { type: "error" | "success"; title: string; actionComponent?: JSX.Element; children?: JSX.Element | JSX.Element[]; } declare const Message: React.FC<MessageProps>; export default Message;