Can someone help me decide if my approach makes sense? I may have gone overboard with components and now I'm questioning the benefits. I've created separate components for both the input field and send button in a form, but I'm facing challenges with sharing input data between them as siblings. Is it really worth adding extra code for this functionality, or would it just be more practical to combine them into one form component?
<template>
<div>
<TextArea></TextArea>
<SendButton></SendButton>
</div>
</template>