Skip to content

Commit

Permalink
drop preact dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
gtanczyk committed Aug 25, 2024
1 parent 91c0056 commit d18050b
Show file tree
Hide file tree
Showing 26 changed files with 1,067 additions and 1,542 deletions.
37 changes: 19 additions & 18 deletions js13k2024/game/index.html
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Monster Steps</title>
<style>
body, html {
font-family: "Courier New", Courier, monospace;
text-transform: uppercase;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
body,
html {
font-family: 'Courier New', Courier, monospace;
text-transform: uppercase;
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
}
</style>
</head>
<body>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>
</head>
<body>
<script type="module" src="/src/index.ts"></script>
</body>
</html>
Loading

0 comments on commit d18050b

Please sign in to comment.