Links
Comment on page

Selection Input

Get selections from Spreadsheet and display it in an input field
Display selections and let users make selection input
import { SelectionInput } from "@rowsncolumns/spreadsheet"
const App = () => {
const [ value, onChange ] = useState("")
return (
<SelectionInput
onChange={onChange}
value={value}
selections={selections}
activeCell={activeCell}
/>
)
}