12345678910111213141516171819202122232425 |
- import { getElementId } from "../../plugins/utils";
- const MODEL = {
- type: "GRIDS",
- x: 0,
- y: 0,
- w: 300,
- h: 130,
- sign: "",
- columnSize: 43,
- columnCount: 16,
- rowCount: 3,
- rowSpace: 0,
- halving: true,
- style: "solid"
- };
- const getModel = () => {
- return {
- id: getElementId(),
- ...MODEL
- };
- };
- export { MODEL, getModel };
|