index.html 570 B

123456789101112131415161718192021222324252627
  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. /* Uygulamanın tüm ekrana yayılması için */
  13. html, body, #app-root {
  14. height: 100%;
  15. margin: 0;
  16. padding: 0;
  17. display: flex;
  18. flex-direction: column;
  19. }
  20. </style>
  21. </head>
  22. <body>
  23. <div id="app-root"></div>
  24. <script src="/bundle.web.js"></script>
  25. </body>
  26. </html>