@logicflow/dumi-theme-simple
Version:
Simple website theme based on dumi2.
19 lines (18 loc) • 419 B
TypeScript
import { FooterProps as RcFooterProps } from 'rc-footer';
import React from 'react';
import 'rc-footer/assets/index.less';
interface FooterProps extends RcFooterProps {
rootDomain?: string;
language?: string;
githubUrl?: string;
/**
* 是否为动态 footer
*/
isDynamicFooter?: boolean;
}
/**
* 底部菜单
* @returns
*/
export declare const Footer: React.FC<FooterProps>;
export {};