You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
682 B
33 lines
682 B
import { Tabs, Typography } from "antd";
|
|
import TeamServices from "./TeamServices/TeamServices";
|
|
import TeamMonitoring from "./TeamMonitoring/TeamMonitoring";
|
|
|
|
const Teams = () => {
|
|
const items = [
|
|
{
|
|
key: "services",
|
|
label: "Service Team",
|
|
children: <TeamServices />,
|
|
},
|
|
{
|
|
key: "monitoring",
|
|
label: "Monitoring Team",
|
|
children: <TeamMonitoring />,
|
|
},
|
|
];
|
|
|
|
return (
|
|
<div>
|
|
<div
|
|
className="header d-flex statistics-header"
|
|
style={{ marginBottom: 16 }}
|
|
>
|
|
<Typography className="title">Teams</Typography>
|
|
</div>
|
|
<Tabs items={items} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default Teams;
|