export interface IQuote { __component: 'shared.quote' id: number body: string title?: string } export function Quote({ body, title }: Readonly) { return (

{body}

{title && ( — {title} )}
) }