A simple and interactive Notes Application built with React.js that allows users to add, view, and delete notes. The app uses React hooks (useState) to manage state and provides a clean, responsive UI.
- Add new notes with a title and description
- View all notes in a responsive layout
- Delete notes individually
- Simple, clean UI using Tailwind CSS
- State management handled with React Hooks (
useState)
- React.js (Functional Components & Hooks)
- Tailwind CSS for styling
- React Icons for UI elements (
RxCrossCircled) - Local state management with
useState
Vercel: Notes App Netlify: Notes App
git clone https://github.com/farheenayy33/Notes-Application-React.js.git
cd Notes-Application-React.jsnpm installnpm start- Open http://localhost:5173 in your browser to view the app.
- Enter a note title and description in the form.
- Click Add Note to save it.
- Notes appear in the Recent Notes section.
- Click the ❌ button (
RxCrossCircled) to delete any note.
Notes-Application-React.js/ ├─ src/ │ ├─ assets/ # Images like Notes.png │ ├─ App.js # Main React component │ └─ index.js # Entry point ├─ package.json └─ README.md
- Save notes to localStorage to persist data between sessions
- Add edit functionality for notes
- Integrate dark mode
- Add tags or categories for notes
