style table

This commit is contained in:
Eduard Heimbuch
2019-11-29 17:13:39 +01:00
parent 14786d7a1a
commit dc169ecff9
3 changed files with 44 additions and 8 deletions

View File

@@ -1,5 +1,5 @@
import React, { FC } from "react";
import {ColumnProps} from "./types";
import React, {FC} from "react";
import {ColumnProps, SortTypes} from "./types";
type Props = ColumnProps & {
dataKey: string;
@@ -20,7 +20,8 @@ TextColumn.defaultProps = {
return 0;
}
};
}
},
sortType: SortTypes.Text
};
export default TextColumn;