Files
ntspi-app/resources/js/Components/LegacyComponents/AdminFormHeader.vue
T
2024-09-19 16:06:49 +05:00

20 lines
341 B
Vue

<script>
export default {
name: "AdminFormHeader",
props: [
'title'
]
}
</script>
<template>
<div class="flex justify-between items-center pb-4 mb-4 rounded-t border-b sm:mb-5 dark:border-gray-600">
<h3 class="text-lg font-semibold text-gray-900 dark:text-white">
{{ title }}
</h3>
</div>
</template>
<style scoped>
</style>