mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-06 16:33:15 +01:00
9 lines
210 B
JavaScript
9 lines
210 B
JavaScript
import React from 'react';
|
|
|
|
export default class ReadOnlyValueControl extends React.Component {
|
|
|
|
render() {
|
|
const {value, placeholder} = this.props;
|
|
return <span>{value||placeholder}</span>;
|
|
}
|
|
}
|