import React from 'react'; export interface Props { // 页面名称 name: string; // 状态 state: { [key: string]: any }; // 子组件列表 components: string[]; } /** * 页面-空白页 */ const PageEmpty: React.FC = (props) => { return null; }; export default PageEmpty;