view index.html @ 139:cf642d395be4

new simpler Patch class; fancier 'hide' view config support
author drewp@bigasterisk.com
date Mon, 08 May 2023 13:05:20 -0700
parents ede37954dbb4
children 2ad4784c0d6c
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
            xurl="/net-route-input/graph/netRouteInput/events"
            url="/collector/graph/reposync"
            view="demo-view.n3"
            expanded="true"
          ></streamed-graph>
        `,
        document.querySelector('#demo')
      );
    </script>
  </body>
</html>