kmap-term-tree
Version:
Renders a tree from a mathematical term
28 lines (25 loc) • 479 B
HTML
<html lang="en-GB">
<head>
<meta charset="utf-8">
<style>
body {
background: #fafafa;
}
</style>
</head>
<body>
<div id="demo"></div>
<script type="module">
import { html, render } from 'lit-html';
import '../dist/src/kmap-term-tree.js';
const title = 'Hello owc World!';
render(
html`
<kmap-term-tree>2a+2b</kmap-term-tree>
`,
document.querySelector('#demo')
);
</script>
</body>
</html>