import { LayoutSectionType } from "@win2win/shared";
import { LayoutSectionModel } from "../../models";

export const getDefaultLayoutSection = () => ({
    idDocLaySection: null,
    type: LayoutSectionType.TEXT,
    asyncData: [],
    styles: {
      margins: [0, 0, 0, 0],
      background: '',
      typography: '',
    },
    content: {
      text: '',
      lines: []
    },
    id: String(Date.now()),
} as LayoutSectionModel)