view index.html @ 148:c26538ee1d1d

minify build, rm dead deps
author drewp@bigasterisk.com
date Mon, 08 May 2023 14:04:50 -0700
parents 2ad4784c0d6c
children
line wrap: on
line source

<!DOCTYPE html>
<html>
  <body>
    <h1>streamed-graph demo</h1>

    <div id="demo"></div>

    <script type="module">
      import { html, render } from "lit";
      import { StreamedGraph } from ".";
      render(
        html`
          <streamed-graph>
            <sg-source url="demo-view.n3"></sg-source>
            <sg-source url="https://bigasterisk.com/environment/graph/environment/events"></sg-source>
            <sg-view uri="#view"></sg-view>
          </streamed-graph>
        `,
        document.querySelector("#demo")
      );
    </script>
  </body>
</html>