Files
xyflow/examples/advanced.html
2019-10-07 19:56:47 +02:00

34 lines
683 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>react-flow example</title>
<style>
html, body {
margin: 0;
}
html, body, #root {
height: 100%;
}
.controls {
position: absolute;
bottom: 10px;
left: 10px;
z-index: 4;
}
.react-flow__handle.connecting {
background: orange;
}
.react-flow__handle.valid {
background: green;
}
</style>
</head>
<body>
<div id="root"></div>
<script src="advanced/scripts/index.js"></script>
</body>
</html>