Get selections from Spreadsheet and display it in an input field
Last updated 11 months ago
import { SelectionInput } from "@rowsncolumns/spreadsheet" const App = () => { const [ value, onChange ] = useState("") return ( <SelectionInput onChange={onChange} value={value} selections={selections} activeCell={activeCell} /> ) }