storj/web/satellite/src/components/dashboard/DashboardArea.vue
Yehor Butko 8fb70aed11
Satellite frontend refactoring (#2537)
Satellite frontend refactoring
2019-07-18 16:39:39 +03:00

26 lines
681 B
Vue

// 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>