mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-01-02 10:42:36 +08:00
### 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)
14 lines
288 B
TypeScript
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;
|