mirror of
https://github.com/rio-labs/rio.git
synced 2026-01-08 22:29:50 -06:00
28 lines
810 B
HTML
28 lines
810 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="styles.scss" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="rio-node-editor">
|
|
<svg></svg>
|
|
<div>
|
|
<div id="node1" class="rio-node-editor-node">
|
|
<div>Node 1</div>
|
|
<div
|
|
class="rio-node-editor-port rio-node-editor-output-port"
|
|
></div>
|
|
</div>
|
|
<div id="node2" class="rio-node-editor-node">
|
|
<div>Node 2</div>
|
|
<div
|
|
class="rio-node-editor-port rio-node-editor-input-port"
|
|
></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script src="script.ts"></script>
|
|
</body>
|
|
</html>
|