@websolutespa/payload-plugin-bowl
Version:
Bowl PayloadCms plugin of the BOM Repository
31 lines (30 loc) • 862 B
JavaScript
export function withComponentBlock({ slug, fields = [], optionsFields = [] }) {
return {
type: 'withBlock',
slug,
fields: [
{
type: 'tabs',
tabs: [
{
label: 'Content',
fields: fields
},
{
label: 'Options',
fields: [
{
type: 'withAnchor'
},
{
type: 'withSeoWeight'
},
...optionsFields
]
}
]
}
]
};
}
//# sourceMappingURL=withComponentBlock.js.map