I've a class based component in which I'm calling the redux store through a action.
class App extends Component {
//Calling Constructor & setting State & other things
this.executeAction("someAction");
}
I want to know what would be the alternate for this in functional Component. P.s:- I'm not sure if it is some library.
You can use
useDipatchhook fromreact-redux