17 lines
438 B
HTML
17 lines
438 B
HTML
|
|
<!doctype html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8" />
|
||
|
|
<meta
|
||
|
|
name="viewport"
|
||
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover"
|
||
|
|
/>
|
||
|
|
<title>Negopoly | Play</title>
|
||
|
|
<link rel="stylesheet" href="./play.css" />
|
||
|
|
</head>
|
||
|
|
<body class="page-play">
|
||
|
|
<div id="root"></div>
|
||
|
|
<script type="module" src="./play.tsx"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|