@mdbootstrap/react-comparison-table
v1.0.0
Published
template for mdb-react-ui-kit
Downloads
4
Maintainers
Readme
MDB React 5
Responsive comparison table templates built with Bootstrap 5. Various examples like comparison table on pricing page, comparison card, product comparison & more.
Check out React Comparison table Documentation for detailed instructions & even more examples.
Basic example
import React from "react";
import {
MDBContainer,
MDBIcon,
MDBTable,
MDBTableBody,
MDBTableHead,
} from "mdb-react-ui-kit";
export default function App() {
return (
<MDBContainer className="py-5">
<MDBTable
responsive
striped
className=" text-successtable-border border-light"
>
<MDBTableHead className="border-light">
<tr>
<th scope="col"></th>
<th scope="col">
<strong>PRO</strong>
</th>
<th scope="col">
<strong>Basic</strong>
</th>
</tr>
</MDBTableHead>
<MDBTableBody>
<tr>
<th scope="row">Domain customization </th>
<td>
<MDBIcon fas icon="check" className="text-success" />
</td>
<td>
<MDBIcon fas icon="times" className="text-danger" />
</td>
</tr>
<tr>
<th scope="row">FTP</th>
<td>
<MDBIcon fas icon="check" className="text-success" />
</td>
<td>
<MDBIcon fas icon="check" className="text-success" />
</td>
</tr>
<tr>
<th scope="row">Database</th>
<td>
<MDBIcon fas icon="check" className="text-success" />
</td>
<td>
<MDBIcon fas icon="times" className="text-danger" />
</td>
</tr>
<tr>
<th scope="row">Support</th>
<td>
<MDBIcon fas icon="check" className="text-success" />
</td>
<td>
<MDBIcon fas icon="check" className="text-success" />
</td>
</tr>
<tr>
<th scope="row">Backups</th>
<td>
<MDBIcon fas icon="check" className="text-success" />
</td>
<td>
<MDBIcon fas icon="times" className="text-danger" />
</td>
</tr>
</MDBTableBody>
</MDBTable>
</MDBContainer>
);
}
How to use?
Download MDB 5 - free REACT UI KIT
Choose your favourite customized component and click on the image
Copy & paste the code into your MDB project
▶️ Subscribe to YouTube channel for web development tutorials & resources
More examples
Comparison on pricing:
Extended comparison table:
You can find other examples here.