Is it against the rules of redux to directly communicate your reactjs component with database without using action even you don't want any data in term of database response.
When itโs something you want you can do it. It just means that database access is bound to your component.
But why you want to access a database without getting any data out of it?
Sebastian, I saw someone code they push data on firebase in this manner that's why I asked the question. That was a quiz app having a feature create and give quiz in creation of quiz may be they don't want data until encounter the completion of all questions.
Ah ok pushing data is also valid ๐. I would put this nonetheless in a redux action, but thatโs a personal opinion. Putting this in a component is fine with the knowledge that this component itself is opinionated about itโs usage.
Sebastian
When itโs something you want you can do it. It just means that database access is bound to your component.
But why you want to access a database without getting any data out of it?