Skip to content

Commit

Permalink
Done with tic tac toe game
Browse files Browse the repository at this point in the history
  • Loading branch information
harshit-2004 committed Nov 23, 2023
1 parent 5dfcb80 commit d697d6e
Show file tree
Hide file tree
Showing 17 changed files with 4,468 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/game-logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>React Tic-Tac-Toe</title>
</head>
<body>
<header>
<img src="game-logo.png" alt="">
<h1>Tic-Tac-Toe</h1>
</header>
<div id="root"></div>
<script type="module" src="/src/index.jsx"></script>
</body>
</html>
Loading

0 comments on commit d697d6e

Please sign in to comment.