view index.html @ 110:3cdbbd913f1d

table displays now just barely
author drewp@bigasterisk.com
date Fri, 18 Mar 2022 23:41:24 -0700
parents faf7e432f089
children f08004002444
line wrap: on
line source

<!DOCTYPE html>
<html>
  <body>
    <h1>streamed-graph demo1</h1>
    
    <div id="demo"></div>

    <script type="module">
      import { html, render } from 'lit';
      import { StreamedGraph } from ".";
      render(
        html`
          <streamed-graph
            url="/collector/graph/reposync"
            view="repos.n3"
            expanded="true"
          ></streamed-graph>
        `,
        document.querySelector('#demo')
      );
    </script>
  </body>
</html>