Mediocreatmybest commited on
Commit
5c2668c
1 Parent(s): fa9456f

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +22 -0
index.html ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Excalidraw in browser</title>
5
+ <meta charset="UTF-8" />
6
+ <script src="https://unpkg.com/react@18.2.0/umd/react.development.js"></script>
7
+ <script src="https://unpkg.com/react-dom@18.2.0/umd/react-dom.development.js"></script>
8
+
9
+ <script
10
+ type="text/javascript"
11
+ src="https://unpkg.com/@excalidraw/excalidraw/dist/excalidraw.development.js"
12
+ ></script>
13
+ </head>
14
+
15
+ <body>
16
+ <div class="container">
17
+ <h1>Excalidraw Embed</h1>
18
+ <div id="app"></div>
19
+ </div>
20
+ <script type="text/javascript" src="src/index.js"></script>
21
+ </body>
22
+ </html>