动态菜单和动态路由的 antd pro

index.d.ts 336B

1234567891011121314
  1. import * as React from 'react';
  2. export interface IGlobalFooterProps {
  3. links?: Array<{
  4. key?: string;
  5. title: React.ReactNode;
  6. href: string;
  7. blankTarget?: boolean;
  8. }>;
  9. copyright?: React.ReactNode;
  10. style?: React.CSSProperties;
  11. }
  12. export default class GlobalFooter extends React.Component<IGlobalFooterProps, any> {}