https://github.com/ibrsec/todoapp-typescript
Todo app with typescript
https://github.com/ibrsec/todoapp-typescript
axios context material react typescript
Last synced: about 1 month ago
JSON representation
Todo app with typescript
- Host: GitHub
- URL: https://github.com/ibrsec/todoapp-typescript
- Owner: ibrsec
- Created: 2024-05-24T12:23:07.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-09T12:29:33.000Z (almost 2 years ago)
- Last Synced: 2025-02-26T07:44:12.647Z (over 1 year ago)
- Topics: axios, context, material, react, typescript
- Language: TypeScript
- Homepage: https://todoapp-react-ts-mock.vercel.app
- Size: 294 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Typescript Todo mockup App
An awesome Typescript Todo App (with mockup api)
Explore the docs ยป
View Demo
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
## โน๏ธ About The Project
[](https://todoapp-react-ts-mock.vercel.app/)
---
๐ฏ Used React environment with typescript
๐ฏ Context api is used for global statement
๐ฏ Axios is used for requests
๐ฅ Todos are stored in a mockUp api
๐ฅ Todos can be added
๐ฅ Todos can be edited
๐ฅ Todos status can be changed to completed
๐ฅ Todos can be deleted
```sh
# clone the project
git clone https://github.com/ibrsec/todoapp-typescript.git
# enter the project directory
cd todoapp-typescript
# install dependency
npm install || yarn install
# develop
npm run dev || yarn start
```
```diff
todoapp-typescript (folder)
|
|---public (folder)
|
+ |---src (folder)
| |---pages (folder)
| |
| |---components (folder)
| |
| |---context (folder)
| |
| |---helper (folder)
| |
| |---types.d.ts
| |---App.tsx
| |---App.css
| |---Index.tsx
| โ---Index.css
|
|----tsconfig.json
|----package.json
|----yarn.lock
โ----readme.md
```
---