JSFiddle - React, Tailwind, and code Playground

by Cody Bennett

JavaScript

import { Clock } from 'https://unpkg.com/three/build/three.module.js';

const clock = new Clock();

const render = () => {
	console.log(clock.getDelta());
	requestAnimationFrame(render);
};

render();