website refactor
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
import { ChangeEvent, forwardRef } from 'react';
|
||||
|
||||
export interface SimpleCheckboxProps {
|
||||
checked: boolean;
|
||||
onChange: (checked: boolean) => void;
|
||||
disabled?: boolean;
|
||||
}
|
||||
|
||||
export const SimpleCheckbox = forwardRef<HTMLInputElement, SimpleCheckboxProps>(({
|
||||
checked,
|
||||
|
||||
Reference in New Issue
Block a user