()
| 78 | const { text, isTrailing = false } = props |
| 79 | |
| 80 | const getTextContent = () => { |
| 81 | return `${text ?? ''}${isTrailing ? '\n' : ''}` |
| 82 | } |
| 83 | |
| 84 | return <span {...{ [DATA_EDITABLE_STRING]: true }}>{getTextContent()}</span> |
| 85 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…