mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-09 21:07:46 +00:00
18 lines
263 B
JavaScript
18 lines
263 B
JavaScript
export default {
|
|
name: 'category',
|
|
title: 'Category',
|
|
type: 'document',
|
|
fields: [
|
|
{
|
|
name: 'title',
|
|
title: 'Title',
|
|
type: 'string',
|
|
},
|
|
{
|
|
name: 'description',
|
|
title: 'Description',
|
|
type: 'text',
|
|
},
|
|
],
|
|
}
|