{
props => (
Input something at below input field:
)
}
```
1. You have to enable the search functionality via `search` prop on `ToolkitProvider`.
2. `ToolkitProvider` is a wrapper of react context, you are supposed to wrap the `BootstrapTable` and `SearchBar` as the child of `ToolkitProvider`
3. You should render `SearchBar` with `searchProps` as well. The position of `SearchBar` is depends on you.
### Search Options
#### defaultSearch - [string]
Accept a string that will be used for default searching when first time table render.
```js