@guestbell/react-page-plugins
Version:
Plugins we use in GuestBell for working with amazing react-page package
14 lines • 410 B
JavaScript
import * as React from 'react';
import { QuoteType } from './quoteType';
export var Quote = function Quote(_ref) {
var attributes = _ref.attributes,
children = _ref.children,
element = _ref.element;
switch (element.type) {
case QuoteType:
return /*#__PURE__*/React.createElement("blockquote", attributes, children);
default:
return null;
}
};
//# sourceMappingURL=Quote.js.map