Websocket clock server web interface written in ReactJS/TypeScript
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 828B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1" />
  7. <!--
  8. Notice the use of %PUBLIC_URL% in the tags above.
  9. It will be replaced with the URL of the `public` folder during the build.
  10. Only files inside the `public` folder can be referenced from the HTML.
  11. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
  12. work correctly both with client-side routing and a non-root public URL.
  13. Learn how to configure a non-root public URL by running `npm run build`.
  14. -->
  15. <title>Clock</title>
  16. </head>
  17. <body>
  18. <noscript>You need to enable JavaScript to run this app.</noscript>
  19. <div id="root"></div>
  20. </body>
  21. </html>