mirror of
https://github.com/vercel/commerce.git
synced 2025-05-15 05:56:59 +00:00
12 lines
244 B
TypeScript
12 lines
244 B
TypeScript
import {defineField} from 'sanity'
|
|
import ProxyStringInput from '../../components/inputs/ProxyString'
|
|
|
|
export default defineField({
|
|
name: 'proxyString',
|
|
title: 'Title',
|
|
type: 'string',
|
|
components: {
|
|
input: ProxyStringInput,
|
|
},
|
|
})
|