Could not find "store" in the context of "Connect(SimpleCard)". Either wrap the root component in a <Provider>, or pass a custom React context provider to <Provider> and the corresponding React context consumer to Connect(SimpleCard) in connect options.
https://codesandbox.io/s/awesome-williams-czxhi
import NoData from "../noData/noData";
render() {
return (
<div>
<input type="text" onChange={this.searchByKeyword} />
<NoData />
</div>
);
}
}