Not able to use scrollToBottom in Ionic 4 with React

The method scrollToBottom with React doesn’t work at all… Only ScrollToTop works with Ionic React… :frowning:

Quick and dirty fix:

    function getContent() {
        return document.querySelector('ion-content#chat-content');
    }

    function scrollToBottom() {
        const container = getContent();
        if(container) container.scrollToPoint(0, 99999);
    }