1import * as React from 'react';
2import { Searchbar } from 'react-native-paper';
3
4export default class MyComponent extends React.Component {
5 state = {
6 firstQuery: '',
7 };
8
9 render() {
10 const { firstQuery } = this.state;
11 return (
12 <Searchbar
13 placeholder="Search"
14 onChangeText={query => { this.setState({ firstQuery: query }); }}
15 value={firstQuery}
16 />
17 );
18 }
19}