YRSearchBar.js 313 B

123456789101112131415161718192021
  1. import React from 'react';
  2. import {View} from "react-native"
  3. class YRSearchBar extends React.Component{
  4. constructor(props){
  5. super(props);
  6. this.state={
  7. name:'YRSearchBar'
  8. };
  9. }
  10. render(){
  11. return <View>
  12. </View>
  13. }
  14. }
  15. export default YRSearchBar;