Mercurial > code > home > repos > streamed-graph
view index.html @ 99:faf7e432f089
WIP build setup
author | drewp@bigasterisk.com |
---|---|
date | Fri, 11 Feb 2022 22:21:51 -0800 |
parents | 0c188ed3bcd8 |
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>