website refactor
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
import React, { ChangeEvent } from 'react';
|
||||
import React, { ChangeEvent, SelectHTMLAttributes } from 'react';
|
||||
|
||||
interface SelectOption {
|
||||
value: string;
|
||||
label: string;
|
||||
}
|
||||
|
||||
interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
|
||||
interface SelectProps extends SelectHTMLAttributes<HTMLSelectElement> {
|
||||
id?: string;
|
||||
'aria-label'?: string;
|
||||
value?: string;
|
||||
|
||||
Reference in New Issue
Block a user