import {mergeConfig} from '../../configStore' import {field} from '../field' import {BlockContentField, FieldReturn} from '../../types' const defaultProps: Partial = { title: 'Content', name: 'content', } export const blockContent = ( props?: BlockContentField, mergeProps?: Partial, ): FieldReturn => field('blockContent', mergeConfig('blockContent', props, mergeProps, defaultProps))