import type { FormSchema } from '@/types/form'
export const searchSchemas: FormSchema[] = [
{
field: 'text',
component: 'Input',
label: '内容',
componentProps: {
placeholder: '请输入内容'
}
]