Skip to content

Commit 7f68188

Browse files
initial commit
0 parents  commit 7f68188

35 files changed

+3841
-0
lines changed

blog-project-rtk-query/.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

blog-project-rtk-query/README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Blog Project Using Redux Toolkit & TypeScript
2+
3+
> Setting up project using npm & vite
4+
5+
> Posts With CRUD Operations using React & TypeScript
6+
7+
> Single Post & User Page
8+
9+
> Using Redux Toolkit for state management
10+
11+
> Handling API requests using RTK Query and Entity Adapter API
12+
13+
JSON server to handle API requests: [https://seemly-truthful-scribe.glitch.me/posts](https://seemly-truthful-scribe.glitch.me/posts)
14+
15+
<b>Visit this repo to deploy your own json server: [JSON server Deployment](https://github.com/ikramdeveloper/json-server-deploy)</b>
16+
17+
---
18+
19+
### Author Links
20+
21+
👋 Hello, I'm Ikram Ul Haq - Web Developer & Programmer
22+
23+
[Buy Me A Coffee](https://www.buymeacoffee.com/ikramdev)
24+
25+
🚀 Follow Me:
26+
27+
- [Twitter](https://twitter.com/ikramdeveloper)
28+
- [LinkedIn](https://www.linkedin.com/in/ikramdeveloper/)
29+
- [StackOverflow](https://stackoverflow.com/users/13859212/ikram-ul-haq)

blog-project-rtk-query/index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite + React + TS</title>
8+
</head>
9+
<body>
10+
<div id="root"></div>
11+
<script type="module" src="/src/main.tsx"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)