mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-04-22 10:10:07 -05:00
5babd09679
* improve overall docs structure and things
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
import dynamic from "next/dynamic";
|
|
|
|
const LongWaitDiagram = dynamic(() => import("./LongWaitDiagram"), {
|
|
ssr: false,
|
|
});
|
|
|
|
export default LongWaitDiagram;
|