blob: 56172f42b60455097dc96819e0b2262fd40b0316 (
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
27
28
29
|
<template>
<section class="feed">
<h1>Zobacz co się dzieje!</h1>
<facebook-find-us-button />
</section>
</template>
<script>
import FacebookFindUsButton from './FacebookFindUsButton.vue'
export default {
components: {
FacebookFindUsButton
},
props: {
pageId: String
}
}
</script>
<style scoped>
.feed {
margin: 50px 0;
}
.feed > h1 {
text-align: center;
}
</style>
|