import { Col, Divider, Row, Spin, Typography } from 'antd'; import CategoryPanel from './category-panel'; import ConfigurationForm from './configuration'; import { useHandleChunkMethodChange, useSelectKnowledgeDetailsLoading, } from './hooks'; import styles from './index.less'; const { Title } = Typography; const Configuration = () => { const loading = useSelectKnowledgeDetailsLoading(); const { form, chunkMethod } = useHandleChunkMethodChange(); return (
Configuration

Update your knowledge base details especially parsing method here.

); }; export default Configuration;