index.d.ts 192 Bytes
Newer Older
ι™ˆεΈ…'s avatar
ι™ˆεΈ… committed
1
import * as React from "react";
2 3 4 5 6 7 8 9
export interface FooterToolbarProps {
  extra: React.ReactNode;
}

export default class FooterToolbar extends React.Component<
  FooterToolbarProps,
  any
> {}