Mercurial > code > home > repos > streamed-graph
view index.html @ 150:3ce355e4f388 default tip
bye jest; hi vitest. new working test for styles.ts
author | drewp@bigasterisk.com |
---|---|
date | Mon, 08 May 2023 17:27:44 -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>