index.html 615 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <link
  7. rel="stylesheet"
  8. href="https://fonts.nibgat.com/ncore.css"
  9. />
  10. <title>React Native Web Test</title>
  11. <style>
  12. html, body, #app-root {
  13. flex-direction: column;
  14. display: flex;
  15. height: 100%;
  16. padding: 0;
  17. margin: 0;
  18. }
  19. </style>
  20. </head>
  21. <body>
  22. <div id="app-root"></div>
  23. </body>
  24. </html>