ragflow/web/src/components/dataset-configuration-container.tsx
balibabu 2c7428e2ee
Feat: Put the configuration of different parsing methods into separate components. #5467 (#5487)
### What problem does this PR solve?

Feat: Put the configuration of different parsing methods into separate
components. #5467

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
2025-02-28 16:54:04 +08:00

23 lines
454 B
TypeScript

import { cn } from '@/lib/utils';
import { PropsWithChildren } from 'react';
type DatasetConfigurationContainerProps = {
className?: string;
} & PropsWithChildren;
export function DatasetConfigurationContainer({
children,
className,
}: DatasetConfigurationContainerProps) {
return (
<div
className={cn(
'border p-2 rounded-lg bg-slate-50 dark:bg-gray-600',
className,
)}
>
{children}
</div>
);
}