Reactjs – How to change sorter behavior (sort only when click on icon) in Ant Design Table in React app
How can I disable sorting when clicking on column title and launch sorting by click on icon only? import React, { useState } from "react"; import { Table, Input } from "antd"; import type { TableColumnsType, TableProps } from "antd";…