🔥 Remove old and unused components

This commit is contained in:
Manuel Ruwe
2022-12-23 17:17:57 +01:00
parent b23f464140
commit f3b601dc2d
37 changed files with 131 additions and 1945 deletions

View File

@@ -6,10 +6,10 @@ import { useConfigContext } from '../../../../config/provider';
import { useConfigStore } from '../../../../config/store';
import { CategoryType } from '../../../../types/category';
export interface CategoryEditModalInnerProps {
export type CategoryEditModalInnerProps = {
category: CategoryType;
onSuccess: (category: CategoryType) => Promise<void>;
}
};
export const CategoryEditModal = ({
context,