import type {ChangeEvent} from 'react'; import {RichTextEditor} from '../../../component/editor/RichTextEditor.tsx'; import type {ContentFormItem} from '../type/content.types.ts'; type ContentFormTableProps = { form: ContentFormItem; onChange: (event: ChangeEvent) => void; onContentChange: (value: string) => void; disabled?: boolean; }; export const ContentFormTable = ({ form, onChange, onContentChange, disabled = false, }: ContentFormTableProps) => { return (
{form.registPnttm ? ( ) : null} {form.registerId ? ( ) : null}
* 콘텐츠 이름
* 내용
최종수정일
작성자
); };