mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 08:55:44 +01:00
fix routing and added ui-extension package
This commit is contained in:
14
scm-ui/ui-extensions/src/testing/Label.js
Normal file
14
scm-ui/ui-extensions/src/testing/Label.js
Normal 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;
|
||||
Reference in New Issue
Block a user