useComponentKeys.ts 247 Bytes
export const useComponentKeys = (scope: string) => {
  const key = scope;

  const conKey = `V${scope}`;

  const configConKey = `VC${scope}`;

  const datasourceConKey = `VD${scope}`;

  return { key, conKey, configConKey, datasourceConKey };
};