about summary refs log tree commit diff
path: root/components/Posts/EmptyCampStory.vue
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-25 23:27:41 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-25 23:27:41 +0100
commit737883fec5571448b6831919fb4e99e376cba53e (patch)
tree92c6449b18ca41cef8b0df643d3b11980e68b847 /components/Posts/EmptyCampStory.vue
parent9e920822e36cb554d94ba1f3ffd27c8339968156 (diff)
downloadpuszcza-737883fec5571448b6831919fb4e99e376cba53e.tar.gz
puszcza-737883fec5571448b6831919fb4e99e376cba53e.zip
Add Camp story
Diffstat (limited to 'components/Posts/EmptyCampStory.vue')
-rw-r--r--components/Posts/EmptyCampStory.vue19
1 files changed, 19 insertions, 0 deletions
diff --git a/components/Posts/EmptyCampStory.vue b/components/Posts/EmptyCampStory.vue
new file mode 100644
index 0000000..57bea40
--- /dev/null
+++ b/components/Posts/EmptyCampStory.vue
@@ -0,0 +1,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>