Skip to content

Commit

Permalink
Added lesson 14
Browse files Browse the repository at this point in the history
  • Loading branch information
gitdagray committed Dec 15, 2022
1 parent 3939045 commit 16b2861
Show file tree
Hide file tree
Showing 15 changed files with 2,517 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@
- πŸ”— [Chapter 7 - Index Signatures & keyof Assertions](https://github.com/gitdagray/typescript-course/tree/main/lesson07)
- πŸ”— [Chapter 8 - Generics](https://github.com/gitdagray/typescript-course/tree/main/lesson08)
- πŸ”— [Chapter 9 - Utility Types](https://github.com/gitdagray/typescript-course/tree/main/lesson09)
- πŸ”— Chapter 10 - Vite Introduction (no source code)
- πŸ”— Chapter 10 - Vite Introduction (_no source code_)
- πŸ”— [Chapter 11 - Beginners Project / Challenges](https://github.com/gitdagray/typescript-course/tree/main/lesson11)
- πŸ”— [Chapter 12 - React + Typescript Starter](https://github.com/gitdagray/typescript-course/tree/main/lesson12)
- πŸ”— [Chapter 13 - React Hooks + Typescript](https://github.com/gitdagray/typescript-course/tree/main/lesson13)
- πŸ”— [Chapter 14 - React useReducer + Typescript](https://github.com/gitdagray/typescript-course/tree/main/lesson14)


### πŸŽ‰ Bonus!
- πŸ”— [TypeScript "as const" Assertions - Youtube Short](https://youtube.com/shorts/jEuIp5NU3TU)
24 changes: 24 additions & 0 deletions lesson14/.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?
13 changes: 13 additions & 0 deletions lesson14/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit 16b2861

Please sign in to comment.