17 lines
232 B
JavaScript
17 lines
232 B
JavaScript
|
|
module.exports = {
|
||
|
|
extend: 'apostrophe-widgets',
|
||
|
|
label: 'Two Column',
|
||
|
|
addFields: [
|
||
|
|
{
|
||
|
|
name: 'areaLeft',
|
||
|
|
type: 'area',
|
||
|
|
label: "Left Area",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
name: "areaRight",
|
||
|
|
type: "area",
|
||
|
|
label: "Right Area"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
};
|