JSFiddle - React, Tailwind, and code Playground

by Dominik Wilk

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <div class="kafelka">
    Ala ma kota.
  </div>
</body>
</html>

CSS

.kafelka {
  width: 100px;
  height: 100px;
  background: red;
  padding: 30px;
}