Update local testing script and resolve errors
This commit is contained in:
@@ -15,6 +15,6 @@ export interface SelectOptionViewProps {
|
||||
disabled: boolean;
|
||||
className: string;
|
||||
itemClasses: string;
|
||||
handleClick: (e: React.MouseEvent<HTMLDivElement>) => void;
|
||||
handleKeyDown: (e: React.KeyboardEvent<HTMLDivElement>) => void;
|
||||
handleClick: (_e: React.MouseEvent<HTMLDivElement>) => void;
|
||||
handleKeyDown: (_e: React.KeyboardEvent<HTMLDivElement>) => void;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
import { forwardRef } from "react";
|
||||
import type { SelectOptionViewProps } from "./SelectOption.types";
|
||||
|
||||
export const SelectOptionView = forwardRef<HTMLDivElement, SelectOptionViewProps>(
|
||||
export const SelectOptionView = forwardRef<
|
||||
HTMLDivElement,
|
||||
SelectOptionViewProps
|
||||
>(
|
||||
(
|
||||
{
|
||||
children,
|
||||
|
||||
Reference in New Issue
Block a user