about summary refs log tree commit diff
path: root/components/Posts/EmptyCampStory.vue
blob: 57bea40289feb962a1493e05d27b3aecf9c3d5c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div>
    <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>