import React from 'react'; import { type SectionDefinition } from '../../config-schema'; import { Field } from '../field/field.component'; export interface GenericSectionProps { sectionDefinition: SectionDefinition; } export const GenericSection = ({ sectionDefinition }: GenericSectionProps) => { return (
{sectionDefinition.fields.map((name) => ( ))}
); };