12 lines
313 B
Vue
12 lines
313 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/new-york/ui/button'
|
|
import { Textarea } from '@/lib/registry/new-york/ui/textarea'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="grid w-full gap-2">
|
|
<Textarea placeholder="Type your message here." />
|
|
<Button>Send message</Button>
|
|
</div>
|
|
</template>
|