Property 'profileStore' is missing in type '{}' but required in type 'Readonly<AppProps>'.ts(2741)
Make profileStore props mandatory from:
interface AppProps {
profileStore: IProfileStore;
}
to optional
interface AppProps {
profileStore?: IProfileStore;
}
The answer is to set the default prop in the component
static defaultProps = {profileStore:{}}