Skip to content
Snippets Groups Projects
index.html 1.06 KiB
Newer Older
<!DOCTYPE html>
<html lang="en" style="height: 100%;">
  <head>
    <title>openBIS / React</title>
    <script>
      function loadError() {
        window.onload = function() {
          let text = 'Error: Could not connect to openBIS.'
          let h2 = document.createElement('h2')
          var textnode = document.createTextNode(text)
          h2.appendChild(textnode)
          document.getElementById('error').appendChild(h2)
    <script
      src="/openbis/resources/api/v3/config.js"
      onerror="loadError()"
    ></script>
    <script src="/openbis/resources/api/v3/require.js"></script>
  </head>
    <div id="app"></div>
  </body>
</html>