mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
15 lines
312 B
Vue
15 lines
312 B
Vue
<script setup lang="ts">
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div flex flex-col gap-4>
|
|
<textarea p2 border-rounded w-full h-40 color-black placeholder="What's on your mind?" />
|
|
<div flex justify-end>
|
|
<button h-9 w-22 bg-primary border-rounded>
|
|
Publish!
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|