import { Button } from "@mui/material";
import { Popconfirm } from "antd";
function PremButton(props) {
const { children, btn, pop, access } = props;
let accesses = access ? ["havePrem"].includes(access) : true;
//配置按钮权限接口
return pop ? (
) : (
);
}
export default PremButton;