Formula Input
Use a formula input component outside the spreadsheet

import { FormulaInput } from "@rowsncolumns/spreadsheet"
const App = () => {
const [ value, onChange ] = useState("")
return (
<FormulaInput
value={value}
onChange={onChange}
/>
)
}Last updated