We use redux-thunk with redux in our project, but some shared business logic can not use redux, as part of the code is used in Wordpress plugin in shortcodes, and there it is not possible to use redux.
Where should I store api calls in that case? I checked this article: https://blog.webdevsimplified.com/2022-07/react-folder-structure/
it says services
folder is the right place for it. What do you think, what is the convention?