index.html 862 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta
  6. name="viewport"
  7. content="width=device-width, initial-scale=1, shrink-to-fit=no"
  8. />
  9. <meta name="theme-color" content="#000000" />
  10. <title>React App</title>
  11. <script>
  12. window.name = "codesandbox";
  13. window.EXCALIDRAW_ASSET_PATH =
  14. "https://esm.sh/@excalidraw/[email protected]/dist/prod/";
  15. </script>
  16. <link rel="stylesheet" href="/dist/dev/index.css" />
  17. </head>
  18. <body>
  19. <noscript> You need to enable JavaScript to run this app. </noscript>
  20. <div id="root"></div>
  21. <script type="module">
  22. import * as ExcalidrawLib from "@excalidraw/excalidraw";
  23. console.log(ExcalidrawLib);
  24. window.ExcalidrawLib = ExcalidrawLib;
  25. </script>
  26. <script type="module" src="index.tsx"></script>
  27. </body>
  28. </html>