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
,
}>
wenerme/apis
,
}>
APIs
,
]}
>
-
-
} type="link" href={'https://github.com/wenerme/wener'}>
wenerme/wener
-
-
-
} type="link" href={'https://github.com/wenerme/apis'}>
wenerme/apis
-
} type="link" href={'https://www.npmjs.com/package/@wener/utils'}>
@wener/utils
-
} type="link" href="https://apis.wener.me/docs/@wener/utils/">
Document
-
-
-
} type="link" href={'https://www.npmjs.com/package/@wener/ui'}>
@wener/ui
-
} type="link" href="https://apis.wener.me/storybook/">
Storybook
-
} type="link" href="https://apis.wener.me/docs/@wener/ui/">
Document
-
-
-
} type="link" href={'https://www.npmjs.com/package/@wener/tinyrpc'}>
@wener/tinyrpc
-
} type="link" href="https://apis.wener.me/docs/@wener/tinyrpc/">
Document
-
-
} backIcon={false} />
{docs.map(({ label, url, icon }) => (
))}
*/}
{children}
);
};