import React, { Component } from 'react'; import { Button } from 'antd'; import AuthorityControl from '../../components/AuthorityControl'; import GlobalAuthority from '../../layouts/GlobalAuthorityContext'; export default class Home extends Component { state = {}; render() { // 定义认证的属性 TODO const GlobalAuthorityProps = { user: 'admin', login: 'success', authList: { 'auth.button': true, }, }; return (

home...

); } }