export interface CategoryType { categoryList: { categoryId: number; categoryName: string; }[] | undefined; }
interface Props extends CategoryType { newCategory: boolean; editActive: boolean; }