{
const ui = Inputs.textarea({
label: "Copy multicell data from here",
rows: 10,
value: `[{"id":80,"value":"viewof name = Inputs.text({ label: \\\"Enter your name\\\" })","pinned":false,"mode":"js","data":null,"name":null},{"id":84,"value":"md\`👋 hi '${name}'.\`","pinned":true,"mode":"js","data":null,"name":null}]`
});
ui.addEventListener("copy", function (event) {
event.preventDefault();
event.stopPropagation();
debugger;
const source = JSON.parse(ui.value);
event.clipboardData.setData("text/plain", source.join("\n\n"));
event.clipboardData.setData(
"application/vnd.observablehq+json",
JSON.stringify(source)
);
});
return ui;
}