JSFiddle - React, Tailwind, and code Playground

HTML

<div id="divIWantedToHide">
tset
</div>

CSS

@media only screen and (max-width: 600px) {
  #divIWantedToHide {
    display: none;
  }
}