5 lines
69 B
TypeScript
5 lines
69 B
TypeScript
export interface ICategory {
|
|
label: string;
|
|
value: string;
|
|
}
|