Gwk-Cultural-Park/schemas/pagebuilder/youtube.ts
2024-09-07 08:40:25 +07:00

20 lines
341 B
TypeScript

import { defineField, defineType } from 'sanity'
export default defineType({
name: 'youtube',
type: 'object',
title: 'YouTube Video',
fields: [
defineField({
name: 'youtubelabel',
type: 'string',
title: 'Label',
}),
{
name: 'url',
type: 'string',
title: 'YouTube URL',
},
],
})