This Help Queue application is as a study on CRUD operations. After login, users can view, edit and delete current 'active' tickets in the queue, as well as create new tickets.
- React - Frontend
- Redux - State Management
- React-redux-firebase and redux-firestore - Bindings
- Firebase - Backend with:
- Firestore Database
- Firebase Authentication
- Firebase Hosting
The <Header /> will remain the same regardless of whether the user is looking at all tickets, a specific ticket or the create new ticket form.
<TicketList /> will loop through all tickets to display them on the page
<Ticket /> will show individual ticket details and provide the user with the option to edit or close the ticket.
<NewTicket /> will have a button that opens up to an add ticket form onClick.

