import { useRef, useEffect, useState, forwardRef } from "react"; import hljs from "highlight.js"; import { Button } from "@components/Button"; import { useToast } from "@components/Toast"; import { twMerge } from "tailwind-merge"; export const GITHUB = "https://raw.githubusercontent.com/p-sw/ui/main"; export const LoadedCode = forwardRef< HTMLPreElement, { from: string; className?: string } >(({ from, className }, outRef) => { const [state, setState] = useState(); const { toast } = useToast(); useEffect(() => { (async () => { const res = await fetch(from); const text = await res.text(); setState(text); })(); }, [from]); const ref = useRef(null); useEffect(() => { if (state && ref.current && !ref.current.dataset.highlighted) { hljs.configure({ ignoreUnescapedHTML: true }); hljs.highlightElement(ref.current); } }, [state]); return (
        
          {state ?? null}
        
      
); });