├── Chapter01
└── index.html
├── Chapter02
├── css
│ ├── bootstrap.min.css
│ └── font-awesome.min.css
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.svg
│ ├── fontawesome-webfont.ttf
│ ├── fontawesome-webfont.woff
│ └── fontawesome-webfont.woff2
├── index.html
├── js
│ ├── firebase-config.js
│ ├── react-form.js
│ └── ticket-table.js
├── reactForm.html
└── viewTickets.html
├── Chapter03
├── README.md
├── _gitignore
├── package-lock.json
├── package.json
├── public
│ ├── favicon.ico
│ ├── index.html
│ └── manifest.json
└── src
│ ├── App.jsx
│ ├── App.test.js
│ ├── add-ticket
│ ├── AddTicketForm.jsx
│ └── AddTicketForm.test.js
│ ├── bootstrap
│ └── bootstrap.min.css
│ ├── firebase
│ └── firebase-config.js
│ ├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
│ ├── header
│ ├── header.css
│ └── header.jsx
│ ├── home
│ └── index.jsx
│ ├── index.js
│ ├── login
│ ├── login.css
│ └── login.jsx
│ ├── logout
│ └── logout.jsx
│ ├── registerServiceWorker.js
│ └── tickets-listing
│ ├── ViewTickets.jsx
│ └── ViewTickets.test.js
├── Chapter04
└── seat-booking-app-final.7z
├── Chapter05
├── README.md
├── _firebaserc
├── _gitignore
├── database.rules.json
├── firebase.json
├── package-lock.json
├── package.json
├── public
│ └── index.html
└── src
│ ├── App.jsx
│ ├── App.test.js
│ ├── add-ticket
│ ├── AddTicketForm.jsx
│ └── AddTicketForm.test.js
│ ├── admin
│ ├── getAllUsers.jsx
│ ├── newUserForm.jsx
│ └── tickets.jsx
│ ├── bootstrap
│ └── bootstrap.min.css
│ ├── firebase
│ └── firebase-config.js
│ ├── fonts
│ ├── glyphicons-halflings-regular.eot
│ ├── glyphicons-halflings-regular.svg
│ ├── glyphicons-halflings-regular.ttf
│ └── glyphicons-halflings-regular.woff
│ ├── header
│ ├── header.css
│ ├── header.jsx
│ └── navigation.jsx
│ ├── home
│ └── index.jsx
│ ├── index.js
│ ├── login
│ ├── login.css
│ └── login.jsx
│ ├── logout
│ └── logout.jsx
│ ├── profile-update
│ └── profile-update.jsx
│ ├── registerServiceWorker.js
│ └── tickets-listing
│ ├── ViewTickets.jsx
│ └── ViewTickets.test.js
├── Chapter07
├── cloud-functions.7z
└── cloud-messaging.7z
├── Chapter08
└── chapter8.7z
├── LICENSE
└── README.md
/Chapter01/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter01/index.html
--------------------------------------------------------------------------------
/Chapter02/css/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/css/bootstrap.min.css
--------------------------------------------------------------------------------
/Chapter02/css/font-awesome.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/css/font-awesome.min.css
--------------------------------------------------------------------------------
/Chapter02/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/Chapter02/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/Chapter02/fonts/fontawesome-webfont.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/fonts/fontawesome-webfont.svg
--------------------------------------------------------------------------------
/Chapter02/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/Chapter02/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/Chapter02/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/Chapter02/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/index.html
--------------------------------------------------------------------------------
/Chapter02/js/firebase-config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/js/firebase-config.js
--------------------------------------------------------------------------------
/Chapter02/js/react-form.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/js/react-form.js
--------------------------------------------------------------------------------
/Chapter02/js/ticket-table.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/js/ticket-table.js
--------------------------------------------------------------------------------
/Chapter02/reactForm.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/reactForm.html
--------------------------------------------------------------------------------
/Chapter02/viewTickets.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter02/viewTickets.html
--------------------------------------------------------------------------------
/Chapter03/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/README.md
--------------------------------------------------------------------------------
/Chapter03/_gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/_gitignore
--------------------------------------------------------------------------------
/Chapter03/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/package-lock.json
--------------------------------------------------------------------------------
/Chapter03/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/package.json
--------------------------------------------------------------------------------
/Chapter03/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/public/favicon.ico
--------------------------------------------------------------------------------
/Chapter03/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/public/index.html
--------------------------------------------------------------------------------
/Chapter03/public/manifest.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/public/manifest.json
--------------------------------------------------------------------------------
/Chapter03/src/App.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/App.jsx
--------------------------------------------------------------------------------
/Chapter03/src/App.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/App.test.js
--------------------------------------------------------------------------------
/Chapter03/src/add-ticket/AddTicketForm.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/add-ticket/AddTicketForm.jsx
--------------------------------------------------------------------------------
/Chapter03/src/add-ticket/AddTicketForm.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/add-ticket/AddTicketForm.test.js
--------------------------------------------------------------------------------
/Chapter03/src/bootstrap/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/bootstrap/bootstrap.min.css
--------------------------------------------------------------------------------
/Chapter03/src/firebase/firebase-config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/firebase/firebase-config.js
--------------------------------------------------------------------------------
/Chapter03/src/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/Chapter03/src/fonts/glyphicons-halflings-regular.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/fonts/glyphicons-halflings-regular.svg
--------------------------------------------------------------------------------
/Chapter03/src/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/Chapter03/src/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/Chapter03/src/header/header.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/header/header.css
--------------------------------------------------------------------------------
/Chapter03/src/header/header.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/header/header.jsx
--------------------------------------------------------------------------------
/Chapter03/src/home/index.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/home/index.jsx
--------------------------------------------------------------------------------
/Chapter03/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/index.js
--------------------------------------------------------------------------------
/Chapter03/src/login/login.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/login/login.css
--------------------------------------------------------------------------------
/Chapter03/src/login/login.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/login/login.jsx
--------------------------------------------------------------------------------
/Chapter03/src/logout/logout.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/logout/logout.jsx
--------------------------------------------------------------------------------
/Chapter03/src/registerServiceWorker.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/registerServiceWorker.js
--------------------------------------------------------------------------------
/Chapter03/src/tickets-listing/ViewTickets.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/tickets-listing/ViewTickets.jsx
--------------------------------------------------------------------------------
/Chapter03/src/tickets-listing/ViewTickets.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter03/src/tickets-listing/ViewTickets.test.js
--------------------------------------------------------------------------------
/Chapter04/seat-booking-app-final.7z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter04/seat-booking-app-final.7z
--------------------------------------------------------------------------------
/Chapter05/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/README.md
--------------------------------------------------------------------------------
/Chapter05/_firebaserc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/_firebaserc
--------------------------------------------------------------------------------
/Chapter05/_gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/_gitignore
--------------------------------------------------------------------------------
/Chapter05/database.rules.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/database.rules.json
--------------------------------------------------------------------------------
/Chapter05/firebase.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/firebase.json
--------------------------------------------------------------------------------
/Chapter05/package-lock.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/package-lock.json
--------------------------------------------------------------------------------
/Chapter05/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/package.json
--------------------------------------------------------------------------------
/Chapter05/public/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/public/index.html
--------------------------------------------------------------------------------
/Chapter05/src/App.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/App.jsx
--------------------------------------------------------------------------------
/Chapter05/src/App.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/App.test.js
--------------------------------------------------------------------------------
/Chapter05/src/add-ticket/AddTicketForm.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/add-ticket/AddTicketForm.jsx
--------------------------------------------------------------------------------
/Chapter05/src/add-ticket/AddTicketForm.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/add-ticket/AddTicketForm.test.js
--------------------------------------------------------------------------------
/Chapter05/src/admin/getAllUsers.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/admin/getAllUsers.jsx
--------------------------------------------------------------------------------
/Chapter05/src/admin/newUserForm.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/admin/newUserForm.jsx
--------------------------------------------------------------------------------
/Chapter05/src/admin/tickets.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/admin/tickets.jsx
--------------------------------------------------------------------------------
/Chapter05/src/bootstrap/bootstrap.min.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/bootstrap/bootstrap.min.css
--------------------------------------------------------------------------------
/Chapter05/src/firebase/firebase-config.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/firebase/firebase-config.js
--------------------------------------------------------------------------------
/Chapter05/src/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/Chapter05/src/fonts/glyphicons-halflings-regular.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/fonts/glyphicons-halflings-regular.svg
--------------------------------------------------------------------------------
/Chapter05/src/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/Chapter05/src/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/Chapter05/src/header/header.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/header/header.css
--------------------------------------------------------------------------------
/Chapter05/src/header/header.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/header/header.jsx
--------------------------------------------------------------------------------
/Chapter05/src/header/navigation.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/header/navigation.jsx
--------------------------------------------------------------------------------
/Chapter05/src/home/index.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/home/index.jsx
--------------------------------------------------------------------------------
/Chapter05/src/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/index.js
--------------------------------------------------------------------------------
/Chapter05/src/login/login.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/login/login.css
--------------------------------------------------------------------------------
/Chapter05/src/login/login.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/login/login.jsx
--------------------------------------------------------------------------------
/Chapter05/src/logout/logout.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/logout/logout.jsx
--------------------------------------------------------------------------------
/Chapter05/src/profile-update/profile-update.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/profile-update/profile-update.jsx
--------------------------------------------------------------------------------
/Chapter05/src/registerServiceWorker.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/registerServiceWorker.js
--------------------------------------------------------------------------------
/Chapter05/src/tickets-listing/ViewTickets.jsx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/tickets-listing/ViewTickets.jsx
--------------------------------------------------------------------------------
/Chapter05/src/tickets-listing/ViewTickets.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter05/src/tickets-listing/ViewTickets.test.js
--------------------------------------------------------------------------------
/Chapter07/cloud-functions.7z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter07/cloud-functions.7z
--------------------------------------------------------------------------------
/Chapter07/cloud-messaging.7z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter07/cloud-messaging.7z
--------------------------------------------------------------------------------
/Chapter08/chapter8.7z:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/Chapter08/chapter8.7z
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/LICENSE
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/PacktPublishing/Serverless-Web-Applications-with-React-and-Firebase/HEAD/README.md
--------------------------------------------------------------------------------