const handleSubmit = () => {
const isEditorEmpty = editorData?.replace(/<\/?[^>]+(>|$)/g, "").trim() === '';
if (isEditorEmpty) {
Alert.alert("Post", "Please add content and image or video for post")
return
}
console.log("Editor data", editorData);
}