import { TeamOutlined } from "@ant-design/icons";
import { Typography } from "antd";
const { Title, Text } = Typography;
const DeptInfo = ({ path }) => {
return (
{path?.depts && path?.depts?.length > 0 ? (
{path?.depts?.length > 1 ? `${path.depts[0].name}等` : path?.depts?.[0]?.name}
) : (
未设置单位
)}
);
};
export default DeptInfo;