An open API service indexing awesome lists of open source software.

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! 🚀💼

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;
```