mirror of
https://github.com/grafana/grafana.git
synced 2026-07-30 08:18:10 -05:00
fix: Add interface for props to UserPickerOption (#10289)
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
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);
|
||||
|
||||
Reference in New Issue
Block a user