index.tsx 307 B

1234567891011121314
  1. import React from 'react'
  2. import styles from './index.module.scss'
  3. function C21wealth() {
  4. return (
  5. <div className={styles.C21wealth}>
  6. <div className='pageTitle'>资源使用</div>
  7. <p>待开发</p>
  8. </div>
  9. )
  10. }
  11. const MemoC21wealth = React.memo(C21wealth)
  12. export default MemoC21wealth