A simple and minimalist feedback collection application built with React.
- Feedback Form - Submit feedback with title and message
- Feedback List - View all submitted feedback items
- UI Components - Reusable button, card, input, and textarea components
- Toast Notifications - User feedback via Sonner notifications
src/
├── components/
│ ├── FeedbackForm.jsx
│ ├── FeedbackItem.jsx
│ ├── FeedbackList.jsx
│ └── ui/
│ ├── button.jsx
│ ├── card.jsx
│ ├── input.jsx
│ ├── textarea.jsx
│ └── sonner.jsx
├── lib/
│ └── utils.js
├── App.jsx
├── main.jsx
└── index.css
Install dependencies and run the development server to start collecting feedback.
- Node.js (v14 or higher)
- npm/pnpm or yarn
- Clone the repository:
git clone https://github.com/AlexLearn-Frontend/feedback_tracker.git
cd feedback_tracker- Install dependencies:
pnpm install- Start the development server:
pnpm devThe application will be available at http://localhost:5173 (or the port shown in your terminal).
pnpm buildThis creates an optimized production build in the dist/ directory.