Migrate components to eslint
This commit is contained in:
parent
de66486e41
commit
b13dbcfa77
69 changed files with 875 additions and 800 deletions
|
@ -11,11 +11,15 @@ export interface Props {
|
|||
}
|
||||
|
||||
export class StartNewConversation extends React.PureComponent<Props> {
|
||||
public render() {
|
||||
public render(): JSX.Element {
|
||||
const { phoneNumber, i18n, onClick } = this.props;
|
||||
|
||||
return (
|
||||
<button className="module-start-new-conversation" onClick={onClick}>
|
||||
<button
|
||||
type="button"
|
||||
className="module-start-new-conversation"
|
||||
onClick={onClick}
|
||||
>
|
||||
<Avatar
|
||||
color="grey"
|
||||
conversationType="direct"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue