| 123456789101112131415161718192021 |
- import React from 'react';
- import {View} from "react-native"
- class YRSearchBar extends React.Component{
- constructor(props){
- super(props);
- this.state={
- name:'YRSearchBar'
- };
- }
- render(){
- return <View>
- </View>
- }
- }
- export default YRSearchBar;
|