diff --git a/src/react-remote/react-remote-parent.js b/src/react-remote/react-remote-parent.js index f277ffb98..1246f754f 100644 --- a/src/react-remote/react-remote-parent.js +++ b/src/react-remote/react-remote-parent.js @@ -168,6 +168,12 @@ reactRemoteContainer.style.zIndex = 10000; reactRemoteContainer.style.border = '5px solid orange'; document.body.appendChild(reactRemoteContainer); +var reactRemoteContainerTitle = document.createElement('div'); +reactRemoteContainerTitle.style.color = 'white'; +reactRemoteContainerTitle.style.backgroundColor = 'orange'; +reactRemoteContainerTitle.innerText = 'React Remote Container'; +reactRemoteContainer.appendChild(reactRemoteContainerTitle); + var toggleContainerVisible = function() { if (reactRemoteContainer.style.left === '-10000px') { reactRemoteContainer.style.left = 0;