applyFee.jsx 364 B

1234567891011121314151617181920
  1. import React from 'react';
  2. const Component = React.createClass({
  3. getInitialState() {
  4. return {
  5. loading: false,
  6. leftKey: 'base',
  7. userType: '0'
  8. };
  9. },
  10. render() {
  11. return (
  12. <div>
  13. 专利申请费用管理
  14. </div>
  15. )
  16. }
  17. });
  18. export default Component;