JSFiddle - React, Tailwind, and code Playground

by deathstalkersid

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
</head>
<body>
  <p id="cart1"></p>
  <script>
  	function test() {
    	let cart1 = document.getElementById('cart1');
      console.log(cart1);
    }
    test();
  </script>
</body>
</html>