import type { ConfigType } from '../types'
export const useComponentKeys = (scope: string) => {
const key = scope
const viewComponentKey = `V${scope}`
const configComponentKey = `VC${scope}`
return { key, viewComponentKey, configComponentKey } as ConfigType
}