import React from "react" export default function({ html, text, url }) { if (html) { return (
) } return (
) } export function SafeValue({ text, url }) { if (url) { return (

{text || url}

) } if (text) { return

{text}

} return null }