tntd
Version:
tntd是基于 TNT Design 设计体系的 React UI 组件库,主要用于研发企业级中后台产品。
17 lines • 647 B
TypeScript
import React from 'react';
import './index.less';
export interface TntdSecondPageProps {
title?: string | React.ReactNode;
header?: React.ReactNode;
toolBar?: React.ReactNode;
footer?: React.ReactNode;
visible?: boolean;
destroyOnClose?: boolean;
onBack?: () => void;
mode?: 'default' | 'absolute' | 'fixed';
inTab?: boolean;
className?: string;
children?: React.ReactNode;
}
export default function TntdSecondPage({ title, header, toolBar, footer, visible, destroyOnClose, onBack, mode, inTab, children, className, }: TntdSecondPageProps): React.ReactElement | null;
//# sourceMappingURL=index.d.ts.map