Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

To eliminate the default table border in Mantine, the "bordered" prop must be set to "false" when rendering the table component. Here is an example code snippet that demonstrates this:

import { Table } from '@mantine/core';

function ExampleComponent() {
  return (
    <Table bordered={false}>
      {/* table contents go here */}
    </Table>
  );
}

By setting "bordered={false}", the table will not have a default border.