File size: 308 Bytes
f850783 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import ApiContent from '@/components/api-service/chat-overview-modal/api-content';
import styles from './index.less';
const ApiPage = () => {
return (
<div className={styles.apiWrapper}>
<ApiContent idKey="dialogId" hideChatPreviewCard></ApiContent>
</div>
);
};
export default ApiPage;
|