observable-framework-input-text
Installation
SKILL.md
Input: Text
Observable Framework documentation: Input: Text Source: https://observablehq.com/framework/input-text
API · Source · The text input allows freeform single-line text entry. For multiple lines, see the text area input.
In its most basic form, a text input is a blank box whose value is the empty string. The text’s value changes as the user types into the box.
const text = view(Inputs.text());
text
We recommend providing a label and placeholder to improve usability. You can also supply an initial value if desired.