-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 774 Bytes
/
index.html
File metadata and controls
30 lines (24 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>TypeScript application using an Elix component</title>
<script src="dist/build.js" type="module"></script>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 15px;
}
</style>
</head>
<body>
<p>
This page shows how Elix components can be used in the context of
a TypeScript application. This page shows two instances of the Elix
DateComboBox component. The first is created via markup; the second
is created at runtime in TypeScript. Both work the same way.
</p>
<elix-date-combo-box date="1 Jan 2020"></elix-date-combo-box>
</body>
</html>