I like that in React you can quickly create small components within the main component file. Is something like that possible with Vue 3 composition API?
Something like this:
Component.vue
<script setup>
const SmallComponent = <div>Test</div>
</script>
<template>
<SmallComponent/>
</template>