react-instantsearch
Version:
⚡ Lightning-fast search for React, by Algolia
13 lines (10 loc) • 469 B
JavaScript
import { createChatInlineLayoutComponent } from 'instantsearch-ui-components';
import { createElement, Fragment } from 'react';
var ChatInlineLayout = createChatInlineLayoutComponent({
createElement: createElement,
Fragment: Fragment
});
// Marker used by `<Chat>` to auto-exempt inline layouts from the entry-point
// validation, since inline chats are always visible (no trigger needed).
ChatInlineLayout.$$inlineLayout = true;
export { ChatInlineLayout };