18 lines
449 B
HTML
18 lines
449 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link type="text/css" rel="stylesheet" href="./src/style.css" />
|
|
<title>RedEye Graph</title>
|
|
</head>
|
|
|
|
<body>
|
|
<svg id="app" class="graph" style="width: 100vw; height: 100vh"></svg>
|
|
<script type="module">
|
|
import { testGraph } from './index.js';
|
|
testGraph('app');
|
|
</script>
|
|
</body>
|
|
</html>
|