index.d.ts 187 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
import React from "react";
export interface FooterToolbarProps {
  extra: React.ReactNode;
}

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