Skip to content

Commit 4e7a357

Browse files
committed
begin docs-app
1 parent 20d6842 commit 4e7a357

4 files changed

Lines changed: 25 additions & 0 deletions

File tree

files/docs-app/app.gts

Whitespace-only changes.

files/docs-app/styles.css

Whitespace-only changes.

files/index.html

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<!doctype html>
2+
<html lang="en-us">
3+
4+
<head>
5+
<meta charset="utf-8" />
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
7+
<title>Docs App</title>
8+
<meta name="description" content="" />
9+
<meta name="viewport" content="width=device-width, initial-scale=1" />
10+
11+
<link rel="stylesheet" href="./docs-app/styles.css" />
12+
13+
</head>
14+
15+
<body>
16+
17+
<script type="module">
18+
import App from './docs-app/app';
19+
20+
App.create({})
21+
</script>
22+
</body>
23+
24+
</html>

files/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
"main": "addon-main.cjs"
8585
},
8686
"imports": {
87+
"#docs-app/*": "./docs-app/*",
8788
"#src/*": "./src/*"
8889
},
8990
"exports": {

0 commit comments

Comments
 (0)