DEV Community

Cover image for Add S.N(Serial Number)/Extra Column in React-Tables V7.
Saroj Pradhan
Saroj Pradhan

Posted on • Edited on

2 1 1

Add S.N(Serial Number)/Extra Column in React-Tables V7.

Q. Who is this article for?

  • For those have used React-Tables and are stuck while adding S.N or extra column in React-Tables.

Here,

const fields = ['s.n', 'title', 'url', 'state'];
Enter fullscreen mode Exit fullscreen mode

If columns are fetched from backend/api and you want to add the "S.N" column then

const columnFields = ['s.n'];
columnFields.push(...fields);
Enter fullscreen mode Exit fullscreen mode

View More and detail at this link Blazecodes.com

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay