When making a Table in Ant Design, there are always gray divider lines between each row. Is there a way to style these divider lines or completely remove them from the table?
You should override the antd
table styles
.ant-table-tbody > tr > td {
border: none
}