Feat: Control interface documentation directory display and hiding (#13008)

### What problem does this PR solve?

Feat: Control interface documentation directory display and hiding

### Type of change


- [x] New Feature (non-breaking change which adds functionality)

Co-authored-by: Kevin Hu <kevinhu.sh@gmail.com>
This commit is contained in:
balibabu
2026-02-05 16:59:20 +08:00
committed by GitHub
parent 1a85d2f8de
commit bbd8ba64a1
5 changed files with 25 additions and 14 deletions

View File

@@ -1,13 +1,7 @@
import ApiContent from '@/components/api-service/chat-overview-modal/api-content';
import styles from './index.module.less';
const ApiPage = () => {
return (
<div className={styles.apiWrapper}>
<ApiContent idKey="dialogId"></ApiContent>
</div>
);
return <ApiContent idKey="dialogId"></ApiContent>;
};
export default ApiPage;