import { useEffect, useState } from "react"; import hljs from "highlight.js"; import { Button } from "@components/Button"; import { useToast } from "@components/Toast"; export function LoadedCode({ from }: { from: string }) { const [state, setState] = useState(); const { toast } = useToast(); useEffect(() => { (async () => { const res = await fetch(from); const text = await res.text(); setState(text); })(); }, [from]); useEffect(() => { if (state) { hljs.highlightAll(); } }, [state]); return (
      
      {state ?? null}
    
); }