更改 react-data-table-component 中的默认文本

change default texts in react-data-table-component

是否可以更改 React 数据 table 组件中的默认文本?例如,当没有可用数据时,它会显示“没有要显示的记录”,但我需要根据用户选择的语言更改文本。是否可以更改默认文本和字体?

在您的 DataTable 组件中使用 noDataComponent 属性

<DataTable
    columns={columns}
    noDataComponent="Your Text Here" //or your component
    data={data}          
    pagination
/>