storj/web/satellite/src/components/dashboard/DashboardArea.vue

26 lines
681 B
Vue
Raw Normal View History

2019-01-24 20:15:10 +00:00
// Copyright (C) 2019 Storj Labs, Inc.
// See LICENSE for copying information.
<template>
<div>
<EmptyState
mainTitle="Create your first new project"
:imageSource="emptyImage" />
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
import EmptyState from '@/components/common/EmptyStateArea.vue';
import { EMPTY_STATE_IMAGES } from '@/utils/constants/emptyStatesImages';
@Component({
components: {
EmptyState,
}
})
export default class DashboardArea extends Vue {
public emptyImage: string = EMPTY_STATE_IMAGES.PROJECT;
}
</script>