import { EXAMPLES } from "../examples.ts"; interface Props { script: string; onChange: (s: string) => void; onRun: () => void; running: boolean; } export function ScriptPanel({ script, onChange, onRun, running }: Props) { return (