Skip to content
Snippets Groups Projects
ProfileView.vue 332 B
Newer Older
Gilgard's avatar
Gilgard committed
<template>
Gilgard's avatar
Gilgard committed
  <div class="h-screen bg-gray-200 grid place-items-center">
    <large-profile-card :isCurrentUser="true" class="align-top" />
  </div>
Gilgard's avatar
Gilgard committed
</template>

<script>
import LargeProfileCard from "@/components/UserProfileComponents/LargeProfileCard.vue";

Gilgard's avatar
Gilgard committed
export default {
Gilgard's avatar
Gilgard committed
  components: {
    LargeProfileCard,
  },
Gilgard's avatar
Gilgard committed
};
Gilgard's avatar
Gilgard committed
</script>