JSFiddle - React, Tailwind, and code Playground

by Dan Schultz

HTML

<!DOCTYPE html>
<html dir="ltr" lang="en">
  <head>
    <meta charset="utf-8" />
    <meta
      name="viewport"
      content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0"
    />
    <title>Stencil Component Starter</title>
    <link
      rel="stylesheet"
      href="https://unpkg.com/@vertexvis/[email protected]/dist/viewer/viewer.css"
    />
    <script
      type="module"
      src="https://unpkg.com/@vertexvis/[email protected]/dist/viewer/viewer.esm.js"
    ></script> 
    <script
      nomodule
      src="https://unpkg.com/@vertexvis/[email protected]/dist/viewer.js"
    ></script>
    <script type="module">
      import { ColorMaterial } from 'https://unpkg.com/@vertexvis/[email protected]/dist/viewer/index.esm.js';
      console.log(ColorMaterial);
    </script>
  </head>
</html>