display/src/utils.tsx

9 lines
194 B
TypeScript
Raw Normal View History

2021-11-13 15:53:10 +01:00
import React from "react";
export function placeholder(value?: string) {
if (value === undefined) {
return <span className="placeholder"/>
} else {
return value;
}
}