@themesberg/volt-react-dashboard
Version:
Volt React Dashboard is a free and open source admin dashboard template powered by React.js and Bootstrap 5
32 lines (26 loc) • 1.11 kB
JavaScript
import React from "react";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
import { faHome } from "@fortawesome/free-solid-svg-icons";
import { Breadcrumb } from '@themesberg/react-bootstrap';
import { PageTrafficTable, RankingTable } from "../../components/Tables";
export default () => {
return (
<>
<div className="d-xl-flex justify-content-between flex-wrap flex-md-nowrap align-items-center py-4">
<div className="d-block mb-4 mb-xl-0">
<Breadcrumb className="d-none d-md-inline-block" listProps={{ className: "breadcrumb-dark breadcrumb-transparent" }}>
<Breadcrumb.Item><FontAwesomeIcon icon={faHome} /></Breadcrumb.Item>
<Breadcrumb.Item>Tables</Breadcrumb.Item>
<Breadcrumb.Item active>Bootstrap tables</Breadcrumb.Item>
</Breadcrumb>
<h4>Bootstrap tables</h4>
<p className="mb-0">
Dozens of reusable components built to provide buttons, alerts, popovers, and more.
</p>
</div>
</div>
<PageTrafficTable />
<RankingTable />
</>
);
};