1👍
✅
You could add a index field to your data with the map function.
const dataWithIndex = serverResponse.data.map((d,i) => ({...d,Index:i+1}));
Source:stackexchange.com