JSFiddle - React, Tailwind, and code Playground

by the94air

HTML

<div>asdf</div>

CSS

* {
  animation: rotateeverthing ease 400ms infinite;
}

@keyframes rotateeverthing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}