UNPKG

create-onetech-app

Version:

CLI to quickly set up React projects with popular templates and tools.

22 lines (19 loc) 667 B
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> <link rel="icon" type="image/svg+xml" href="/onetech.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <script> const theme = localStorage.getItem("theme"); const systemDark = window.matchMedia("(prefers-color-scheme: dark)").matches; const finalTheme = theme === "system" || !theme ? (systemDark ? "dark" : "light") : theme; document.documentElement.classList.add(finalTheme); </script> <title>OneTech</title> </head> <body> <div id="root"></div> <script type="module" src="/app/main.tsx"></script> </body> </html>