mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 16:35:45 +01:00
15 lines
204 B
JavaScript
15 lines
204 B
JavaScript
|
|
//@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;
|