https://github.com/sanjaraiy/todoapp_using_react
This repository features the todo_App project, built with JavaScript, Tailwind CSS, and React.js. Organize your tasks seamlessly with a sleek and intuitive user interface! 🚀💼
https://github.com/sanjaraiy/todoapp_using_react
html5 javascript react-hooks react-router reactjs redux tailwindcss vite
Last synced: 3 months ago
JSON representation
This repository features the todo_App project, built with JavaScript, Tailwind CSS, and React.js. Organize your tasks seamlessly with a sleek and intuitive user interface! 🚀💼
- Host: GitHub
- URL: https://github.com/sanjaraiy/todoapp_using_react
- Owner: sanjaraiy
- Created: 2024-01-29T08:31:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-29T11:51:44.000Z (over 2 years ago)
- Last Synced: 2025-02-23T14:43:49.564Z (over 1 year ago)
- Topics: html5, javascript, react-hooks, react-router, reactjs, redux, tailwindcss, vite
- Language: JavaScript
- Homepage:
- Size: 47.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Todo App :-
This project is built on `TailwindCSS`, `JavaScript`, `React.js` and `Redux-toolkit`.
## React Create App Using Vite :-
```
npm create vite@latest
```
## NPM Json Package install Link :-
```
npm install
```
## Tailwind Install Link :-
```
npm install -D tailwindcss
npx tailwindcss init
```
## Configration of Tailwind file :-
```
module.exports = {
content: ["./src/**/*.{html,js}"],
theme: {
extend: {},
},
plugins: [],
}
```
## Add the Tailwind directives to your CSS file :-
```
@tailwind base;
@tailwind components;
@tailwind utilities;
```