15 lines
352 B
TypeScript
15 lines
352 B
TypeScript
|
|
"use client";
|
||
|
|
import dynamic from "next/dynamic";
|
||
|
|
|
||
|
|
export const SigmaGraphClient = dynamic(
|
||
|
|
() => import("./sigma-graph").then((m) => m.SigmaGraph),
|
||
|
|
{
|
||
|
|
ssr: false,
|
||
|
|
loading: () => (
|
||
|
|
<div className="flex items-center justify-center w-full h-full font-mono text-xs text-[#5a6678]">
|
||
|
|
carregando grafo…
|
||
|
|
</div>
|
||
|
|
),
|
||
|
|
},
|
||
|
|
);
|