// import { TypeTag } from '../type-tag' import { ValueDisplayStyle } from './styles'; export interface ValueDisplayProps { value: string; placeholder?: string; hasError?: boolean; } export const ValueDisplay: React.FC = (props) => ( {props.value} {props.value === undefined || props.value === '' ? ( {props.placeholder || '--'} ) : null} );