Having services in React application

I’m coming from the angular world where I could extract logic to a service/factory and consume them in my controllers.

I’m trying to understand how can I achieve the same in a React application.

Let’s say that I have a component that validates user’s password input (it’s strength). It’s logic is pretty complex hence I don’t want to write it in the component it self.

Where should I write this logic? In a store if I’m using flux? Or is there a better option?

13 Answers
13

Leave a Comment