import Icon from './Icon'; import Preview from './Preview'; import React from 'react'; import { TypeEditorBlock } from '../../../Types'; import { TypeField } from '../../../../Form/Types'; export interface Data { one: { title: string; subtitle: string; description: string; date: string; }; two: { title: string; subtitle: string; description: string; date: string; }; three: { title: string; subtitle: string; description: string; date: string; }; } export default { name: 'blog-type-d', description: 'Two column blog post display.', fields: [ { type: 'text', name: 'one.title', label: 'Title:', group: 'First panel' } as TypeField, { type: 'textarea', name: 'one.description', label: 'Description:', group: 'First panel' } as TypeField, { type: 'text', name: 'two.title', label: 'Title:', group: 'Second panel' } as TypeField, { type: 'textarea', name: 'two.description', label: 'Description:', group: 'Second panel' } as TypeField, { type: 'text', name: 'three.title', label: 'Title:', group: 'Third panel' } as TypeField, { type: 'textarea', name: 'three.description', label: 'Description:', group: 'Third panel' } as TypeField, ], icon: () => , preview: (data: Data) => , } as TypeEditorBlock;