A fluidtopics text field
npm install @fluid-topics/ft-text-fieldA text input component.
``shell`
npm install @fluid-topics/ft-text-field
yarn add @fluid-topics/ft-text-field
`typescript
import {html} from "lit"
import "@fluid-topics/ft-text-field"
function render() {
return html
@change=${(e: CustomEvent) => console.log("Value changed:", e.detail)}
@live-change=${(e: CustomEvent) => console.log("Value live changed:", e.detail)}>
``
}