How does the table component of react.js display the English data into Chinese?

how does the table component of react.js display the English data into Chinese?
in which the milestoneTypeName field data is "ROUTINE". How can the foreground be displayed as "regular" in Chinese?

table:
return [
            { title: "", dataIndex: "milestoneName" },
            { title: "", dataIndex: "description"},
            { title: "", dataIndex: "milestoneTypeName"},
            { title: "", dataIndex: "dueDate"},
            { title: "", dataIndex: "authorName"},
            { title: "",width:100,
            
     ]     
:
{id: 10885, milestoneName: "TEST_v2018-09-10", description: "", authorId: 1,}
authorId:1
authorName:"Administrator"
createTime:1536217208000
description:""
dueDate:1536508800000
id:10885
milestoneName:"TEST_v2018-09-10"
milestoneType:0
milestoneTypeName:"ROUTINE"
projectGroupId:6
May.31,2021

the easiest way to define a constant would be fine, for example:


{
          title: '',
          dataIndex: 'milestoneName',
          render: (text, record) => (
            <span>
              {this.checkMilestoneName(record.milestoneName)}
            </span>
          ),
        },

.

  checkMilestoneName = (value) => {
    switch (value) {
      case 'ROUTINE':
        return ''
      default: 
        return ''
    };
  }
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b4123e-2c561.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b4123e-2c561.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?