JSFiddle - React, Tailwind, and code Playground

HTML

<section id="spin" style="border:5px solid black;"></section>

            <script>
                (function () {
                    var setWindowSize = window.innerWidth - 100;
                    document.getElementById("spin").style.width = setWindowSize + "px";
                    document.getElementById("spin").style.height = setWindowSize + "px";
                })();
            </script>