One of the conveniences of flat system is that by placing an index file in reducers for example, I can import any reducers by deconstruting the index file like
import { userReducer, eventReducer } from '../reducers'
And it is neat and clean
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
One of the conveniences of flat system is that by placing an index file in reducers for example, I can import any reducers by deconstruting the index file like
import { userReducer, eventReducer } from '../reducers'
And it is neat and clean