import { VevProps } from '@vev/utils'; import { startCase } from 'lodash'; export const getTitle = (schema: VevProps) => { return schema.title || startCase(schema.name); };