// Pullquote.jsx — print pull-quote: rules above and below, no card function Pullquote({ children, cite }) { return (

{children}

{cite && ( — {cite} )}
); } window.Pullquote = Pullquote;