stackdriver: typescriptifying props

This commit is contained in:
Erik Sundell
2018-11-09 14:30:28 +01:00
parent 75da02e1f0
commit f307fc4760
@@ -1,8 +1,8 @@
import React, { SFC } from 'react';
interface Props {
onValueChange: any;
options: any;
onValueChange: (e) => void;
options: any[];
value: string;
label: string;
}