# Formula Input

Formula input component allows users to enter formulas, make cell selections from Spreadsheet.

<figure><img src="https://67932947-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FHWsslZpYESUXxPccoyig%2Fuploads%2Fgit-blob-4eeb98152395da11f6300a95ae74f20d3bba0464%2Fimage.png?alt=media" alt=""><figcaption><p>Formula Input component</p></figcaption></figure>

It can be placed anywhere inside the SpreadsheetProvider and use it part of your custom interface.

```tsx
import { FormulaInput } from "@rowsncolumns/spreadsheet"

const App = () => {
  const [ value, onChange ] = useState("")
  return (
    <FormulaInput
      value={value}
      onChange={onChange}
    />
  )
}
```
