JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour
import {useMemo} from 'react'; import linkifyStr from 'linkify-string'; export function useLinkifiedString(text: string | null | undefined) { return useMemo(() => { if (!text) { return text; } return linkifyStr(text, { nl2br: true, attributes: {rel: 'nofollow'}, }); }, [text]); }