index.tsx 717 B

123456789101112131415161718192021222324
  1. /*
  2. * @Author: code4eat awesomedema@gmail.com
  3. * @Date: 2023-10-07 10:34:43
  4. * @LastEditors: code4eat awesomedema@gmail.com
  5. * @LastEditTime: 2023-11-30 17:04:22
  6. * @FilePath: /kcim_frontend_template/src/components/KCIMDrawerForm/index.tsx
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. import { DrawerForm, DrawerFormProps } from '@ant-design/pro-components';
  10. import './style.less';
  11. const KCIMDrawerForm: React.FC<DrawerFormProps> = (props) => {
  12. // 在这里可以添加任何自定义逻辑或样式
  13. return <DrawerForm {...props} />;
  14. };
  15. export default KCIMDrawerForm;