index.ts
421 Bytes
import { useComponentKeys } from '../../../hook/useComponentKeys';
import { ConfigType, PackagesCategoryEnum } from '../../../index.type';
import { useI18n } from '/@/hooks/web/useI18n';
const { t } = useI18n();
const componentKeys = useComponentKeys('Picture');
export const PictureConfig: ConfigType = {
...componentKeys,
title: t('visual.board.otherComponent.picture'),
package: PackagesCategoryEnum.OTHER,
};