> For the complete documentation index, see [llms.txt](https://docs.wirebootstrap.com/bootstrap/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wirebootstrap.com/bootstrap/input/configuration.md).

# Configuration

Use the following configuration options to bind the Bootstrap Input component.

## Properties

| Name    | Default | Description                                                                                           |
| ------- | ------- | ----------------------------------------------------------------------------------------------------- |
| datamap |         | Used to bind data to the component. See [Data Binding](/bootstrap/input/data-binding.md) for details. |
| value   |         | Value to set into the input                                                                           |

The following example put the value `Jim Kennedy` into the input text box.

```typescript
const input = new wire.bsInput().render("#input", {
    value: "Jim Kennedy"
});
```

Note, this is a static bind.  The component does not listen for changes unless the component uses [dynamic data binding](https://docs.wirebootstrap.com/wirebootstrap/datasets) for the same value..
