Refactor code

This commit is contained in:
2023-11-02 23:24:03 +07:00
parent cc147f071c
commit 6560c304c3
28 changed files with 163 additions and 157 deletions
@@ -1,6 +1,9 @@
import { ISelectOptions } from '../../globals/interfaces';
import { StyledSelect } from './styled';
export interface ISelectOptions {
value: string;
label: string;
}
interface ISelect {
options: ISelectOptions[];
value: string;