25 lines
697 B
HTML
25 lines
697 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>maxGraph TypeScript Integration with Vite</title>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
<style>
|
|
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>maxGraph TypeScript Integration with Vite</h1>
|
|
<p>Display a test graph. Activated behaviours:</p>
|
|
<ul>
|
|
<li>Panning: use mouse right button</li>
|
|
<li>Cells selection with Rubberband: use mouse left button</li>
|
|
</ul>
|
|
<div id="graph-container"></div>
|
|
<footer></footer>
|
|
</body>
|
|
</html>
|
|
|