import React from "react"; // import { SquiggleChart } from "@quri/squiggle-components"; import dynamic from "next/dynamic"; const SquiggleChart = dynamic( () => import("@quri/squiggle-components").then((mod) => mod.SquiggleChart), { loading: () =>

Loading...

, ssr: false, } ); /* const SquiggleChart = dynamic( () => import("@quri/squiggle-components").then((mod) => mod.SquiggleChart), { suspense: true, ssr: false, } ); */ const effectButtonStyle = "bg-transparent m-2 hover:bg-blue-500 text-blue-700 font-semibold hover:text-white py-2 px-4 border border-blue-500 hover:border-transparent rounded mt-5"; export function DynamicSquiggleChart({ link, stopShowing }) { let usefulLink = { source: link.source, target: link.target, squiggleString: link.squiggleString, }; return link == null ? ( "" ) : ( /*{
}*/