Advanced Tutorial: CAP
+
+ You're a little early!
+ We're still working on this tutorial, but it will be available soon.
+
diff --git a/_docs/js/components.js b/_docs/js/components.js new file mode 100644 index 0000000..d0fa8d2 --- /dev/null +++ b/_docs/js/components.js @@ -0,0 +1,2 @@ +import * as header from "./components/header.js"; +import * as sidebar from "./components/sidebar.js"; diff --git a/_docs/js/components/header.js b/_docs/js/components/header.js new file mode 100644 index 0000000..9487930 --- /dev/null +++ b/_docs/js/components/header.js @@ -0,0 +1,49 @@ + +class Header extends HTMLElement { + + constructor(){ + super(); + } + + connectedCallback() { + this.innerHTML = ` +
+ You're a little early!
+ We're still working on this tutorial, but it will be available soon.
+