Skip to content

Commit

Permalink
Merge pull request #21 from GO-SOPT-WEB/Week7/CardsGameTS
Browse files Browse the repository at this point in the history
[ 7μ£Όμ°¨ 과제 ] 🐣 μΉ΄λ“œκ²Œμž„ TypeScript μ „ν™˜ 🐣
  • Loading branch information
Chanwoo-Jeong authored Aug 1, 2023
2 parents a95cbec + 66be060 commit c536b43
Show file tree
Hide file tree
Showing 25 changed files with 8,791 additions and 0 deletions.
Empty file added Week5-0527/Seminar/index.html
Empty file.
16 changes: 16 additions & 0 deletions Week7-0527/CardsGameTS/.eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
env: { browser: true, es2020: true, node: true },
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
],
parserOptions: { ecmaVersion: "latest", sourceType: "module" },
settings: { react: { version: "18.2" } },
plugins: ["react-refresh"],
rules: {
"react-refresh/only-export-components": "warn",
"react/prop-types": "off",
},
};
24 changes: 24 additions & 0 deletions Week7-0527/CardsGameTS/.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?
14 changes: 14 additions & 0 deletions Week7-0527/CardsGameTS/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="https://upload.wikimedia.org/wikipedia/commons/thumb/5/51/Pokebola-pokeball-png-0.png/220px-Pokebola-pokeball-png-0.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>포켓λͺ¬ μΉ΄λ“œ λ§žμΆ”κΈ° κ²Œμž„</title>
</head>
<body>
<div id="root"></div>
<div id="modal"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit c536b43

Please sign in to comment.