🚚(frontend) rename pads-create to pad-management

Rename the pads-create feature to pad-management.
This feature will not only create but gives tools
to update and remove pads as well.
This commit is contained in:
Anthony LC
2024-05-23 17:26:12 +02:00
committed by Anthony LC
parent 29577c0419
commit 3a68c75feb
13 changed files with 2 additions and 2 deletions

View File

@@ -1,3 +1,3 @@
export * from './pad';
export * from './pads-create';
export * from './pad-management';
export * from './pads-panel';

View File

@@ -4,7 +4,7 @@ import { useTranslation } from 'react-i18next';
import { Box, DropButton, IconOptions, Text } from '@/components';
import { Pad } from '@/features/pads/pad';
import { ModalRemovePad, ModalUpdatePad } from '@/features/pads/pads-create';
import { ModalRemovePad, ModalUpdatePad } from '@/features/pads/pad-management';
import { TemplatesOrdering, useTemplates } from '../api/useTemplates';