Newer
Older
smart-home-server / webclient-vue / src / components / feedback / AppEmptyState.vue
@Eugene Sukhodolskiy Eugene Sukhodolskiy 1 day ago 302 bytes Add script detail pages with scope grouping
<template>
  <GnEmptyState :title="title" :text="message" icon="ph-package" />
</template>

<script setup>
import { GnEmptyState } from "gnexus-ui-kit/vue";

defineProps({
  title: {
    type: String,
    default: "Nothing here",
  },
  message: {
    type: String,
    default: "",
  },
});
</script>