1
Fork 0
This repository has been archived on 2024-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
tic-tac-toe/index.html

40 lines
921 B
HTML
Raw Normal View History

2024-05-31 14:12:54 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./assets/favicon-32x32.png"
/>
<title>Tic Tac Toe</title>
<style>
2024-05-31 20:33:38 +00:00
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
2024-05-31 14:12:54 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
</style>
</head>
<body>
<div id="root"></div>
<script type="module">
import React from "react";
import { createRoot } from "react-dom/client";
import App from "./src/app.jsx";
createRoot(document.getElementById("root")).render(
React.createElement(
React.StrictMode,
null,
React.createElement(App, null),
),
);
</script>
</body>
</html>