SysAdmin.jsx 533 B

1234567891011121314151617181920212223242526272829303132333435
  1. /**
  2. * @Classname SysAdmin
  3. * @Description 授权认证系统的管理后端布局
  4. * @Date 2019/9/11 12:57
  5. * @Created by Administrator
  6. */
  7. import React from 'react';
  8. import * as PropTypes from 'prop-types';
  9. import {Tag} from 'antd'
  10. class SysAdmin extends React.Component {
  11. static propTypes = {};
  12. static defaultProps = {};
  13. constructor(props) {
  14. super(props);
  15. this.state = {};
  16. }
  17. componentDidMount() {
  18. }
  19. render() {
  20. return (<Tag>xx</Tag>)
  21. }
  22. }
  23. export default SysAdmin;