mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 16:52:17 +01:00
13 lines
346 B
Vue
13 lines
346 B
Vue
<script setup lang="ts">
|
|
import TableHeading from '@/Components/Common/TableHeading.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<TableHeading>
|
|
<div class="px-3 py-1.5 text-left font-semibold text-white">Email</div>
|
|
<div class="px-3 py-1.5 text-left font-semibold text-white">Role</div>
|
|
</TableHeading>
|
|
</template>
|
|
|
|
<style scoped></style>
|