Comment on page
Formula Input
Use a formula input component outside the spreadsheet
Formula input component allows users to enter formulas, make cell selections from Spreadsheet.

Formula Input component
It can be placed anywhere inside the SpreadsheetProvider and use it part of your custom interface.
import { FormulaInput } from "@rowsncolumns/spreadsheet"
const App = () => {
const [ value, onChange ] = useState("")
return (
<FormulaInput
value={value}
onChange={onChange}
/>
)
}
Last modified 7mo ago