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