diff --git a/packages/react/src/components/LoadedCode.tsx b/packages/react/src/components/LoadedCode.tsx new file mode 100644 index 0000000..f1b8d27 --- /dev/null +++ b/packages/react/src/components/LoadedCode.tsx @@ -0,0 +1,58 @@ +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}
+    
+ ); +}