gitlab-org--gitlab-foss/app/assets/javascripts/environments/components/empty_state.vue

28 lines
666 B
Vue

<script>
export default {
name: 'EnvironmentsEmptyState',
props: {
helpPath: {
type: String,
required: true,
},
},
};
</script>
<template>
<div class="empty-state">
<div class="text-content">
<h4 class="blank-state-title js-blank-state-title">
{{ s__("Environments|You don't have any environments right now") }}
</h4>
<p class="blank-state-text">
{{
s__(`Environments|Environments are places where
code gets deployed, such as staging or production.`)
}}
<a :href="helpPath"> {{ s__('Environments|More information') }} </a>
</p>
</div>
</div>
</template>