Home > Software design >  Antd Pagination change "page" text
Antd Pagination change "page" text

Time:08-04

I'm using antd pagination and i need to change the "page" text to something else. There is a way to change language but i don't want to change language i want to change "page" to "product". I couldn't find anything in enter image description here

You can find the codesandbox link here to try it. I took it from the docs

CodePudding user response:

you can simply use:

<Pagination locale={{ items_per_page: '' }} />
  • Related