@mskcc/carbon-react
Version:
Carbon react components for the MSKCC DSM
17 lines (14 loc) • 337 B
JavaScript
/**
* MSKCC 2021, 2024
*/
/**
* We currently support the following sorting states for DataTable headers,
* namely: `NONE` for no sorting being applied, and then `DESC` and `ASC` for
* the corresponding direction of the sorting order.
*/
const sortStates = {
NONE: 'NONE',
DESC: 'DESC',
ASC: 'ASC'
};
export { sortStates };