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

Loading...

, ssr: false, } ) export function DynamicSquiggleEditorWithImportedBindings( props: any ) { return ( ) };