### What problem does this PR solve? feat: Added UI functions related to data-flow knowledge base #3221 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
14 lines
450 B
TypeScript
14 lines
450 B
TypeScript
import { FormContainerProps } from '@/components/form-container';
|
|
import { cn } from '@/lib/utils';
|
|
import { PropsWithChildren } from 'react';
|
|
|
|
export function ConfigurationFormContainer({
|
|
children,
|
|
className,
|
|
}: FormContainerProps) {
|
|
return <section className={cn('space-y-4', className)}>{children}</section>;
|
|
}
|
|
|
|
export function MainContainer({ children }: PropsWithChildren) {
|
|
return <section className="space-y-5">{children}</section>;
|
|
}
|