aboutsummaryrefslogtreecommitdiffstats
path: root/src/tag
diff options
context:
space:
mode:
Diffstat (limited to 'src/tag')
-rw-r--r--src/tag/index.ts5
-rw-r--r--src/tag/scss.ts4
-rw-r--r--src/tag/tag.ts11
3 files changed, 20 insertions, 0 deletions
diff --git a/src/tag/index.ts b/src/tag/index.ts
new file mode 100644
index 0000000..cc2c768
--- /dev/null
+++ b/src/tag/index.ts
@@ -0,0 +1,5 @@
+const output = `import tag from './$name.tag';
+export default tag;
+`;
+
+export default output; \ No newline at end of file
diff --git a/src/tag/scss.ts b/src/tag/scss.ts
new file mode 100644
index 0000000..0c3e74e
--- /dev/null
+++ b/src/tag/scss.ts
@@ -0,0 +1,4 @@
+const output = `/* Write your SCSS here */
+`;
+
+export default output; \ No newline at end of file
diff --git a/src/tag/tag.ts b/src/tag/tag.ts
new file mode 100644
index 0000000..db1fc93
--- /dev/null
+++ b/src/tag/tag.ts
@@ -0,0 +1,11 @@
+const output = `<$name>
+ <!-- Write your HTML here -->
+
+ <script type="es6">
+ import style from './$name.scss'
+ /* Write your ES6 JS here */
+ </script>
+</$name>
+`;
+
+export default output; \ No newline at end of file