mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-03-23 13:11:38 -05:00
8 lines
160 B
TypeScript
8 lines
160 B
TypeScript
import dynamic from "next/dynamic";
|
|
|
|
const AgentLoopDiagram = dynamic(() => import("./AgentLoopDiagram"), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default AgentLoopDiagram;
|