about summary refs log tree commit diff
path: root/components/Posts/EmptyCampStory.vue
blob: b9ecd12d5b0661d9f0d35a93d903b1dc47349262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div style="width: 100%">
    <h3 style="margin: 10vh 10vmin 0 10vmin">
      Tutaj niedługo znajdziesz relację z obozu
    </h3>
    <pure-post-list loading :posts="[]" style="margin-bottom: 30px" />
  </div>
</template>

<script>
import PurePostList from '~/components/Posts/PostList/PurePostList'

export default {
  name: 'EmptyCampStory',
  components: {
    PurePostList,
  },
}
</script>