aboutsummaryrefslogtreecommitdiff
path: root/src/components/features_panel
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/features_panel')
-rw-r--r--src/components/features_panel/features_panel.js6
-rw-r--r--src/components/features_panel/features_panel.vue26
2 files changed, 32 insertions, 0 deletions
diff --git a/src/components/features_panel/features_panel.js b/src/components/features_panel/features_panel.js
new file mode 100644
index 00000000..19018fb4
--- /dev/null
+++ b/src/components/features_panel/features_panel.js
@@ -0,0 +1,6 @@
+const FeaturesPanel = {
+ computed: {
+ }
+}
+
+export default FeaturesPanel
diff --git a/src/components/features_panel/features_panel.vue b/src/components/features_panel/features_panel.vue
new file mode 100644
index 00000000..bcb700ed
--- /dev/null
+++ b/src/components/features_panel/features_panel.vue
@@ -0,0 +1,26 @@
+<template>
+ <div class="features-panel">
+ <div class="panel panel-default base01-background">
+ <div class="panel-heading timeline-heading base02-background base04">
+ <div class="title">
+ Features
+ </div>
+ </div>
+ <div class="panel-body features">
+ <ul>
+ <li>Media proxy</li>
+ <li>Local chat</li>
+ <li>Who to follow</li>
+ <li>Scope options</li>
+ <li>Formatting options</li>
+ <li>Text limit=</li>
+ </ul>
+ </div>
+ </div>
+ </div>
+</template>
+
+<script src="./features_panel.js" ></script>
+
+<style lang="scss">
+</style>