Passing list item index via router
export class TodoDescription extends React.Component<any, any> implements HasStateActions<TodoStateActions> {
actions: TodoStateActions;
statePath: any;
get stateIndex() {
return '0' // param comming from router or any other source
};
}Last updated