33 lines
957 B
HTML
33 lines
957 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>UI Lib</title>
|
|
<link href="dist/ui.min.css" rel="stylesheet" />
|
|
<script src="amrnb.js"></script>
|
|
<script type="module" src="main.js"></script>
|
|
<script src="dist/ui.min.js"></script>
|
|
<script src="dist/utility.min.js"></script>
|
|
<style type="text/css">
|
|
#container>.ui-grid {
|
|
width: 1000px;
|
|
height: 400px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="display: flex; flex-direction: column; align-items: flex-start">
|
|
<div id="container"></div>
|
|
<!--<button id="setItem">set item</button>
|
|
<button id="addItem">add item</button>
|
|
<button id="addItems">add items</button>
|
|
<button id="removeItem">remove item</button>
|
|
<button id="removeItems">remove items</button>-->
|
|
</div>
|
|
</body>
|
|
|
|
</html> |