import React from 'react'; import {View, StyleSheet, ViewProps, Text} from 'react-native'; import {ProfilePreviewType} from '../../types'; import {ProfilePreview} from '..'; import {useNavigation} from '@react-navigation/native'; import {Button} from 'react-native-elements'; interface FollowersListProps { result: Array; sectionTitle: string; } const Followers: React.FC = ({result, sectionTitle}) => { const navigation = useNavigation(); return ( <>