import { SquigglePartial, SquiggleEditor } from "../components/SquiggleEditor"; import { useState } from "react"; import { Canvas, Meta, Story, Props } from "@storybook/addon-docs"; export const Template = (props) => ; # Squiggle Partial A Squiggle Partial is an editor that does not return a graph to the user, but instead returns bindings that can be used by further Squiggle Editors. {Template.bind({})} {(props) => { let [bindings, setBindings] = useState({}); return ( <> ); }}