/** * @file FootBtn.tsx * @author lvzhiyi lihuanji * * 固定定位最下方按钮 */ import React from 'react'; import './style'; interface FootBtnFace { /** * 点击回调 */ onClick?: React.ReactEventHandler; /** * class */ className?: string; /** * 子节点 */ children?: React.ReactNode; style?: object; } declare const FootBtn: React.StatelessComponent; export default FootBtn;