Files
xyflow/examples/svelte/src/app.html
T

22 lines
411 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="/favicon.ico" />
<style>
html,
body,
#root {
height: 100%;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
</style>
%sveltekit.head%
</head>
<body>
<div id="root">%sveltekit.body%</div>
</body>
</html>