Ну, у меня есть эта ошибка
Error: Invalid hook call. Hooks can only be called inside of the body of a function component.
Я пробовал много разных вариантов, чтобы это исправить, но мне не удалось.
Вот мой код
export const DataInput = () => {
const Post = (testTitle, testText) => {
useFirestore().collection('schedule-data').doc('test').set({
testTitle: testTitle,
testText: testText
})
}
return(
<Button
variant="primary"
onClick={()=> Post(testTitle, testText)}>
POST data
</Button>
Удалил часть кода, который не имеет значения