AliConfig.jsx 461 B

12345678910111213141516171819202122
  1. import React, {Component} from 'react';
  2. import {FormattedMessage} from 'react-intl';
  3. class AliConfig extends Component {
  4. constructor(props) {
  5. super(props);
  6. this.state = {
  7. };
  8. }
  9. render() {
  10. return (
  11. <div>
  12. <p><b><FormattedMessage id="It is under development, please look forward to it. Thank you for your attention"/></b></p>
  13. </div>
  14. )
  15. }
  16. }
  17. export default AliConfig;