fix routing and added ui-extension package

This commit is contained in:
Sebastian Sdorra
2019-10-11 13:24:02 +02:00
parent a9bcef2bfc
commit 889e186257
20 changed files with 1606 additions and 63 deletions

View File

@@ -0,0 +1,14 @@
//@flow
import React from "react";
type Props = {
value: string
};
class Label extends React.Component<Props> {
render() {
return <label>{this.props.value}</label>;
}
}
export default Label;