Reactjs – How to put the special string to the bottom when using table sorter
I want the special string '--' always at the bottom regardless of the direction ascending or descending. The sorted results I expect are: Ascend: ['1.1', '1.2', '1.3', '--', '--'] Descend: ['1.3', '1.2', '1.1', '--', '--'] import "antd/dist/antd.css"; import { Table…