import React from "react";
import styles from "./index.less";
import { PageHeader, Menu, Dropdown, Button, Tag, Typography, Row } from "antd";
import { EllipsisOutlined } from "@ant-design/icons";
const { Paragraph } = Typography;
const menu = (
);
const DropdownMenu = () => {
return (
);
};
const routes = [
{
path: "index",
breadcrumbName: "First-level Menu"
},
{
path: "first",
breadcrumbName: "Second-level Menu"
},
{
path: "second",
breadcrumbName: "Third-level Menu"
}
];
const IconLink = ({ src, text }) => (
{text}
);
const content = (
<>
Ant Design interprets the color system into two levels: a system-level
color system and a product-level color system.
Ant Design's design team preferred to design with the HSB color
model, which makes it easier for designers to have a clear psychological
expectation of color when adjusting colors, as well as facilitate
communication in teams.