Files
ragflow/web/src/pages/user-setting/setting-api/index.tsx
balibabu 10c28c5ecd Feat: Refactoring the documentation page using shadcn. #10427 (#12376)
### What problem does this PR solve?

Feat: Refactoring the documentation page using shadcn. #10427

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-12-31 19:00:37 +08:00

14 lines
288 B
TypeScript

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"></ApiContent>
</div>
);
};
export default ApiPage;