diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f444b73 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +tagslice.json diff --git a/index.html b/index.html new file mode 100644 index 0000000..f4ddbb7 --- /dev/null +++ b/index.html @@ -0,0 +1,16 @@ + + + + + TagSlice + + + + +
+ + + + diff --git a/tagslice.css b/tagslice.css new file mode 100644 index 0000000..e69de29 diff --git a/tagslice.js b/tagslice.js new file mode 100644 index 0000000..8c9ce07 --- /dev/null +++ b/tagslice.js @@ -0,0 +1,7 @@ +'use strict'; + +class TagSlice { + constructor(container) { + container.innerText = 'test'; + } +}