chore(ui): migrate more code to typescript

This commit is contained in:
Łukasz Mierzwa
2020-06-29 16:14:53 +01:00
committed by Łukasz Mierzwa
parent 55170f8812
commit 4d4dd111c1
36 changed files with 392 additions and 205 deletions

5
ui/src/Common/Select.ts Normal file
View File

@@ -0,0 +1,5 @@
const NewLabelName = (v: string) => `New label: ${v}`;
const NewLabelValue = (v: string) => `New value: ${v}`;
export { NewLabelName, NewLabelValue };