Mercurial > code > home > repos > streamed-graph
view index.html @ 124:e26daf747e19
0.0.8
author | drewp@bigasterisk.com |
---|---|
date | Sun, 20 Mar 2022 16:40:51 -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>