Skip to content
Snippets Groups Projects
CommunityList.vue 371 B
Newer Older
Gilgard's avatar
Gilgard committed
<template>
  <ul>
    <li v-for="(group, index) in groupList" :key="index">
      <group-list-item :group="group" />
    </li>
  </ul>
</template>

<script>
import GroupListItem from "@/components/CommunityComponents/CommunityListItem.vue";
Gilgard's avatar
Gilgard committed

export default {
  name: "GroupList",
  props: {
    groupList: Array,
  },
  components: {
    GroupListItem,
  },
};
</script>