JSFiddle - React, Tailwind, and code Playground

by Dan Schultz

HTML

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>3D viewer with Vertex</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> 
  
  <style>
    .viewer {
      width: 500px;
      height: 500px;
    }
  </style>
</head>
<body>
  <vertex-viewer
    id="viewer"
    class="viewer"
    credentials-api-key="client-id"
  >
    <vertex-viewer-toolbar class="viewer-toolbar" data-viewer="viewer"></vertex-viewer-toolbar>
  </vertex-viewer>

</body>
</html>