|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | + <head> |
| 4 | + <meta charset="utf-8" /> |
| 5 | + <link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" /> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1" /> |
| 7 | + <link |
| 8 | + rel="stylesheet" |
| 9 | + href="https://unpkg.com/papercss@1.6.1/dist/paper.min.css" |
| 10 | + /> |
| 11 | + <meta name="theme-color" content="#000000" /> |
| 12 | + <meta |
| 13 | + name="description" |
| 14 | + content="Example of Resize Observer API with React" |
| 15 | + /> |
| 16 | + <!-- |
| 17 | + manifest.json provides metadata used when your web app is installed on a |
| 18 | + user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ |
| 19 | + --> |
| 20 | + <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> |
| 21 | + <!-- |
| 22 | + Notice the use of %PUBLIC_URL% in the tags above. |
| 23 | + It will be replaced with the URL of the `public` folder during the build. |
| 24 | + Only files inside the `public` folder can be referenced from the HTML. |
| 25 | +
|
| 26 | + Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will |
| 27 | + work correctly both with client-side routing and a non-root public URL. |
| 28 | + Learn how to configure a non-root public URL by running `npm run build`. |
| 29 | + --> |
| 30 | + <title>Resize Observer API with React</title> |
| 31 | + </head> |
| 32 | + <body> |
| 33 | + <noscript>You need to enable JavaScript to run this app.</noscript> |
| 34 | + <div id="root"></div> |
| 35 | + <!-- |
| 36 | + This HTML file is a template. |
| 37 | + If you open it directly in the browser, you will see an empty page. |
| 38 | +
|
| 39 | + You can add webfonts, meta tags, or analytics to this file. |
| 40 | + The build step will place the bundled scripts into the <body> tag. |
| 41 | +
|
| 42 | + To begin the development, run `npm start` or `yarn start`. |
| 43 | + To create a production bundle, use `npm run build` or `yarn build`. |
| 44 | + --> |
| 45 | + <!-- Fathom - simple website analytics - https://github.com/usefathom/fathom --> |
| 46 | + <script> |
| 47 | + (function(f, a, t, h, o, m) { |
| 48 | + a[h] = |
| 49 | + a[h] || |
| 50 | + function() { |
| 51 | + (a[h].q = a[h].q || []).push(arguments); |
| 52 | + }; |
| 53 | + (o = f.createElement("script")), |
| 54 | + (m = f.getElementsByTagName("script")[0]); |
| 55 | + o.async = 1; |
| 56 | + o.src = t; |
| 57 | + o.id = "fathom-script"; |
| 58 | + m.parentNode.insertBefore(o, m); |
| 59 | + })(document, window, "//analytics.sethcorker.com/tracker.js", "fathom"); |
| 60 | + fathom("set", "siteId", "QCRKN"); |
| 61 | + fathom("trackPageview"); |
| 62 | + </script> |
| 63 | + <!-- / Fathom --> |
| 64 | + </body> |
| 65 | +</html> |
0 commit comments