index.d.ts 219 Bytes
Newer Older
sin's avatar
sin committed
1 2 3 4 5 6 7
import * as React from 'react';
export interface IFooterToolbarProps {
  extra: React.ReactNode;
  style?: React.CSSProperties;
}

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