mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-03 15:44:44 +08:00
25 lines
482 B
HTML
Executable File
25 lines
482 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>UE Blueprint</title>
|
|
<link rel="stylesheet" href="dist/css/ueb-style.css">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
--ueb-height: 100vh;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<script type="module">
|
|
import { Blueprint } from "./dist/ueblueprint.js"
|
|
</script>
|
|
<ueb-blueprint></ueb-blueprint>
|
|
</body>
|
|
|
|
</html>
|