forked from LarsDenBakker/lit-html-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
advanced:ing-web.html
33 lines (28 loc) · 1.04 KB
/
advanced:ing-web.html
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
31
32
33
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script type="module">
/**
* Assignment:
* This is a free format assignment. At ING we are building the ing-web library, which is based on lit-html.
* Check out the library here: https://gitlab.ing.net/TheGuideComponents/ing-web and here: https://web.developer.ing.net/projects/ing-web
* Experiment with using it. For example:
* - Replace the components from the assignments with components from ing-web
* - Implement ing-web's CSS system
* - Use ing-web's ajax system for fetching data
*
* This assignment cannot be completed inside plnkr. You will need to install your dependencies locally.
*
* Check out the README.md for reference documentation
*/
import { LitElement, html, css } from 'https://unpkg.com/[email protected]?module';
class MyElement extends LitElement {
}
customElements.define('my-element', MyElement);
</script>
</head>
<body>
</body>
</html>