I have a state in React something like this:
type MyState = {
xCount: number;
yCount: number;
};
I want to access a state without knowing it's name while coding the program.
export class BodyWidget extends React.Component<BodyWidgetProps> {
state: MyState = {
xCount: 1,
yCount: 1
};
returnState = (name:any) {
return this.state[name]
}
...
}
When I am trying this i get this error:
Element implicitly has an 'any' type because expression of type 'any' can't be used to index type 'MyState'.
try