fix: Add missing typing

This commit is contained in:
Johannes Schill
2019-02-07 21:22:16 +01:00
parent e5759fa0ed
commit 0811fbd6d0
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ import React, { PureComponent } from 'react';
import { PanelProps } from '@grafana/ui';
export class Text2 extends PureComponent<PanelProps> {
constructor(props) {
constructor(props: PanelProps) {
super(props);
}