@quick-game/cli
Version:
Command line interface for rapid qg development
29 lines (27 loc) • 669 B
HTML
<!--
Copyright 2023 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<title>Shortcut dialog - basic example</title>
<style>
#container {
width: 800px;
height: 400px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
}
</style>
</head>
<body>
<div id="container"></div>
<script src="./basic.js" type="module"></script>
</body>
</html>