index.d.ts 289 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1
import * as React from "react";
2 3
export interface GlobalFooterProps {
  links: Array<{
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
4
    title: React.ReactNode;
5 6 7 8 9 10 11 12 13 14
    href: string;
    blankTarget?: boolean;
  }>;
  copyright: React.ReactNode;
}

export default class GlobalFooter extends React.Component<
  GlobalFooterProps,
  any
> {}