index.d.ts 289 B

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