index.tsx 693 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * @Author: code4eat awesomedema@gmail.com
  3. * @Date: 2022-12-14 14:14:32
  4. * @LastEditors: code4eat awesomedema@gmail.com
  5. * @LastEditTime: 2023-09-26 15:36:15
  6. * @FilePath: /BudgetManaSystem/src/pages/Home/index.tsx
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. import React from 'react';
  10. import './style.less';
  11. import KCIMPagecontainer from '@/components/KCIMPageContainer';
  12. const HomePage: React.FC = () => {
  13. return (
  14. <KCIMPagecontainer className='HomePage' ghost>
  15. HomePage
  16. </KCIMPagecontainer>
  17. );
  18. };
  19. export default HomePage;