Gmdl Grid Lists Entities
Grid titles
- Preview
- Usage
- Definition
import { GridTitles } from '@dinghy/diagrams/entitiesGmdlGridLists'
<GridTitles/>
// or
import { extendStyle } from "@dinghy/base-components";
import { GRID_TITLES } from '@dinghy/diagrams/entitiesGmdlGridLists'
<Shape
{...props}
_style={extendStyle(props, GRID_TITLES)}
/>
{
_style: {
entity: 'dashed=0;shape=rect;fillColor=#ffffff;strokeColor=none;',
},
_width: 358,
_height: 642,
}
Two-line grid list
- Preview
- Usage
- Definition

import { TwoLineGridList } from '@dinghy/diagrams/entitiesGmdlGridLists'
<TwoLineGridList/>
// or
import { extendStyle } from "@dinghy/base-components";
import { TWO_LINE_GRID_LIST } from '@dinghy/diagrams/entitiesGmdlGridLists'
<Shape
{...props}
_style={extendStyle(props, TWO_LINE_GRID_LIST)}
/>
{
_style: {
entity: 'dashed=0;shape=rect;fillColor=#000000;strokeColor=none;',
},
_width: 358,
_height: 642,
}