feature: options for each note in notes index
parent
ed978b76ec
commit
fb43832911
@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<div class="hover:bg-lightgray flex h-12 w-full items-center p-4">
|
||||||
|
{{ props.name }}
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup lang="ts">
|
||||||
|
interface Props {
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const props = defineProps<Props>();
|
||||||
|
</script>
|
||||||
Loading…
Reference in New Issue