html range input doesn't work correctly inside <Dynamic> on android devices
When it has been wrapped by another div, input can't slide.
**work on all devices**
<Dynamic component="div">
<input type="range" />
</Dynamic>
doesn't work on android devices
<div>
<Dynamic component="div">
<input type="range" />
</Dynamic>
</div>