aboutsummaryrefslogtreecommitdiff
path: root/src/components/features_panel/features_panel.vue
blob: bcb700ed37bdeaca752e94c1b31acbf2271cfbde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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>