import { View, ActivityIndicator } from "react-native"; import { useCommentSection } from "@replyke/core"; const CommentsFooterComponent = () => { const { hasMore, loading } = useCommentSection(); return ( hasMore && loading && ( ) ); }; export default CommentsFooterComponent;