@angeloreppucci/ant-design-pro-layout
Version:
ant-design-pro layout, easy to use pro scaffolding.
17 lines (16 loc) • 492 B
TypeScript
import './index.less';
import React from 'react';
import { WithFalse } from '../typings';
export interface GlobalFooterProps {
links?: WithFalse<{
key?: string;
title: React.ReactNode;
href: string;
blankTarget?: boolean;
}[]>;
copyright?: React.ReactNode;
style?: React.CSSProperties;
className?: string;
}
declare const _default: ({ className, links, copyright, style }: GlobalFooterProps) => JSX.Element | null;
export default _default;