When disable mobile initialization the component are not visible by default, by example:
import AOS from 'aos';
import 'aos/dist/aos.css';
AOS.init({ disable: 'mobile' });
<p data-aos="fade-left">
Example content.
</p>
In the web browser works fine, but in mobile the message is not show. I was hoping it would show normally without any animation.