App.js
522 Bytes
import React from 'react';
import AppContainer from './components/AppContainer/AppContainer';
import SafeAreaView from 'react-native-safe-area-view';
import SearchBar from './components/SearchBar/SearchBar';
export default class App extends React.Component {
constructor(props){
super(props);
this.state = {
};
}
render(){
return (
<>
<SearchBar />
<SafeAreaView style={{flex: 1, backgroundColor:'#eee'}}>
<AppContainer />
</SafeAreaView>
</>
)
}
}