File layout

This commit is contained in:
Ian Gulliver
2017-06-12 05:55:42 +00:00
parent 93ef1f2194
commit 264a25649e
4 changed files with 24 additions and 0 deletions

7
tagslice.js Normal file
View File

@@ -0,0 +1,7 @@
'use strict';
class TagSlice {
constructor(container) {
container.innerText = 'test';
}
}