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