import { ApiOutlined, BookOutlined, FormatPainterOutlined, GithubOutlined, HomeOutlined, RetweetOutlined, ToolOutlined, } from '@ant-design/icons'; import { Button, Col, PageHeader, Result, Row } from 'antd'; import React from 'react'; export const WenerApisWelcome: React.FC<{ title?: string; subTitle?: string; icon?: React.ReactNode }> = (props) => { const { title = `Wener's APIs`, subTitle = '', icon = , children } = props; return ( }> Home , , , ]} >
    • -
    • -
    • -
    • -
{/*文档
} backIcon={false} />
{docs.map(({ label, url, icon }) => (
))}
*/} {children}
); };