Commit 68d43b86 by Johannes Schill

fix: Add interface for props to UserPickerOption (#10289)

parent 5931d6c8
import React, { Component } from "react";
class UserPickerOption extends Component {
export interface IProps {
onSelect: any;
onFocus: any;
option: any;
isFocused: any;
className: any;
}
class UserPickerOption extends Component<IProps, any> {
constructor(props) {
super(props);
this.handleMouseDown = this.handleMouseDown.bind(this);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment