Skip to content

Instantly share code, notes, and snippets.

@jahangiranwari
Created February 22, 2021 05:22
Show Gist options
  • Save jahangiranwari/33f1b0618e6a1a3c0c2a544599f0c60e to your computer and use it in GitHub Desktop.
Save jahangiranwari/33f1b0618e6a1a3c0c2a544599f0c60e to your computer and use it in GitHub Desktop.
Top Two Stories object type
export default {
name: 'topTwoStories',
title: 'Top Two Stories',
type: 'object',
fieldsets: [
{
name: 'story1',
title: 'Story 1',
options: { collapsible: true, collapsed: false }
},
{
name: 'story2',
title: 'Story 2',
options: { collapsible: true, collapsed: true }
}
],
fields: [
{
name: 'Story1',
title: '-',
type: 'articleCard',
fieldset: 'story1'
},
{
name: 'Story2',
title: '-',
type: 'articleCard',
fieldset: 'story2'
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment