import { Button } from 'react-bootstrap' import { useState } from 'react' export default function MoreFooter ({ cursor, fetchMore, Skeleton, noMoreText }) { const [loading, setLoading] = useState(false) if (loading) { return
} let Footer if (cursor) { Footer = () => ( ) } else { Footer = () => (
{noMoreText || 'GENESIS'}
) } return
}