A simple note-taking web application built with React and Vite, inspired by Google Keep. Users can add, view, and delete notes with a clean Material UI design.
- Add notes with a title and content
- Delete notes
- Responsive and modern UI using Material UI
- Styled with custom CSS
.
├── index.html
├── package.json
├── vite.config.js
├── public/
│ └── styles.css
└── src/
├── index.jsx
└── components/
├── App.jsx
├── CreateArea.jsx
├── Footer.jsx
├── Header.jsx
└── Note.jsx
-
Clone the repository:
git clone https://github.com/natural-mess/Keeper-App.git cd Keeper-App -
Install dependencies:
npm install
Start the development server:
npm run devOpen http://localhost:5173 in your browser to view the app.
To build the app for production:
npm run build