JSFiddle - React, Tailwind, and code Playground

HTML

<html>
<head>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
<body>
    <div id="3d_scene"></div>
</body>
</html>

JavaScript

// jsHint
/*global window */
/*global THREE */

var App = {};

App = function(sceneContainerName) {
    this.sceneContainerName = sceneContainerName;

    this.SCREEN_WIDTH = window.innerWidth;
    this.SCREEN_HEIGHT = window.innerHeight;

    this.MAX_X = this.SCREEN_WIDTH / 2;
    this.MIN_X = 0 - (this.SCREEN_WIDTH / 2);
    this.MAX_Y = this.SCREEN_HEIGHT / 2;
    this.MIN_Y = 0 - (this.SCREEN_HEIGHT / 2);

    this.NUM_HORIZONTAL_LINES = 50;

    this.init();
};

App.prototype = {
    init: function() {
        // init scene
        this.scene = new THREE.Scene();

        // init camera
        // View Angle, Aspect, Near, Far
        this.camera = new THREE.PerspectiveCamera(45, this.SCREEN_WIDTH / this.SCREEN_HEIGHT, 1, 10000);
        // set camera position
        //this.camera.position.z = 1000;
        this.camera.position.z = this.SCREEN_HEIGHT / (2 * Math.tan(45 / 2 * (Math.PI / 180)));
        this.camera.position.y = 0;

        // add the camera to the scene
        this.scene.add(this.camera);

        this.projector = new THREE.Projector();

        // init renderer
        this.renderer = new THREE.CanvasRenderer();
        // start the renderer
        this.renderer.setSize(this.SCREEN_WIDTH, this.SCREEN_HEIGHT);

        this.drawGrid(this.NUM_HORIZONTAL_LINES);

        // attach the render-supplied DOM element
        var container = document.getElementById(this.sceneContainerName);
        container.appendChild(this.renderer.domElement);

        this.animate();
    },

    getNWScreenVector: function() {
        return new THREE.Vector3(this.MIN_X, this.MAX_Y, 0);
    },

    getNEScreenVector: function() {
        return new THREE.Vector3(this.MAX_X, this.MAX_Y, 0);
    },

    getSWScreenVector: function() {
        return new THREE.Vector3(this.MIN_X, this.MIN_Y, 0);
    },

    getSEScreenVector: function() {
        return new THREE.Vector3(this.MAX_X, this.MIN_Y, 0);
    },

    animate: function() {
        var me = this;

       ...