import React from 'react'; import {ProfilePreviewType} from '../../types'; import SearchResult from './SearchResult'; import {StyleSheet, View} from 'react-native'; interface SearchResultsProps { results: Array; } const SearchResults: React.FC = ({results}) => { return ( {results.map((profilePreview) => ( ))} ); }; const styles = StyleSheet.create({ result: { marginVertical: 10, }, }); export default SearchResults;