├── .gitignore ├── .parcelrc ├── .postcssrc ├── Episode 01 - Inception ├── Assignment.md ├── Code │ ├── App.js │ ├── README.md │ ├── index.css │ └── index.html └── Theory │ └── Episode 01 - Theory.md ├── Episode 02 - Igniting Our App ├── Assignment.md ├── Code │ ├── App.js │ ├── README.md │ ├── index.css │ └── index.html └── Theory │ └── Episode 02 - Theory.md ├── Episode 03 - Laying the Foundation ├── Assignment.md ├── Code │ ├── App.js │ ├── Header.css │ ├── Header.js │ ├── README.md │ ├── icon.png │ ├── index.css │ ├── index.html │ └── profile.png └── Theory │ └── Episode 03 - Theory.md ├── Episode 04 - Talk is cheap, show me the code! ├── Assignment.md ├── Code │ ├── App.js │ ├── README.md │ ├── index.css │ └── index.html └── Theory │ └── Episode 04 - Theory.md ├── Episode 05 - Let's get Hooked ├── Assignment.md ├── Code │ ├── README.md │ └── src │ │ ├── App.js │ │ ├── components │ │ ├── Body.js │ │ ├── Header.js │ │ └── RestaurantCard.js │ │ ├── index.css │ │ ├── index.html │ │ └── utils │ │ ├── constants.js │ │ └── mockData.js ├── Theory │ └── Episode 05 - Theory.md └── dist │ ├── Grocery.672e4dba.js │ ├── Grocery.672e4dba.js.map │ ├── Grocery.c52c2ad2.js │ ├── Grocery.c52c2ad2.js.map │ ├── icons8-fast-food-64.0a7c6916.png │ ├── icons8-fast-food-64.1a8f8321.png │ ├── index.0d94706d.css │ ├── index.0d94706d.css.map │ ├── index.7271efb6.js │ ├── index.7271efb6.js.map │ ├── index.7802dff6.js │ ├── index.7802dff6.js.map │ ├── index.9e4c6fd2.css │ ├── index.9e4c6fd2.css.map │ └── index.html ├── Episode 06 - Exploring The World ├── Assignment.md ├── Code │ ├── README.md │ ├── index.css │ ├── index.html │ └── src │ │ ├── App.js │ │ ├── components │ │ ├── Body.js │ │ ├── Header.js │ │ ├── RestaurantCard.js │ │ └── Shimmer.js │ │ └── utils │ │ └── constants.js └── Theory │ └── Episode 06 - Theory.md ├── Episode 07 - Finding the Path ├── Assignment.md ├── Code │ ├── README.md │ ├── index.css │ ├── index.html │ └── src │ │ ├── App.js │ │ ├── components │ │ ├── About.js │ │ ├── Body.js │ │ ├── Contact.js │ │ ├── Error.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── RestaurantCard.js │ │ ├── RestaurantMenu.js │ │ ├── Shimmer.js │ │ └── ShimmerMenu.js │ │ └── utils │ │ └── constants.js └── Theory │ └── Episode 07 - Theory.md ├── Episode 08 - Let's Get Classy ├── Asssigment.md ├── Code │ ├── README.md │ ├── index.css │ ├── index.html │ └── src │ │ ├── App.js │ │ ├── components │ │ ├── About.js │ │ ├── Body.js │ │ ├── Contact.js │ │ ├── Error.js │ │ ├── Footer.js │ │ ├── Header.js │ │ ├── RestaurantCard.js │ │ ├── RestaurantMenu.js │ │ ├── Shimmer.js │ │ ├── ShimmerMenu.js │ │ ├── User.js │ │ └── UserClass.js │ │ └── utils │ │ └── constants.js └── Theory │ └── Episode 08 - Theory.md ├── Episode 09 - Optimising Our App ├── Assignment.md ├── Code │ ├── README.md │ ├── index.css │ ├── index.html │ └── src │ │ ├── App.js │ │ ├── components │ │ ├── About.js │ │ ├── Body.js │ │ ├── Contact.js │ │ ├── Error.js │ │ ├── Footer.js │ │ ├── Grocery.js │ │ ├── Header.js │ │ ├── RestaurantCard.js │ │ ├── RestaurantMenu.js │ │ ├── Shimmer.js │ │ ├── ShimmerMenu.js │ │ ├── User.js │ │ └── UserClass.js │ │ └── utils │ │ ├── constants.js │ │ ├── useOnlineStatus.js │ │ └── useRestaurantMenu.js └── Theory │ └── Episode 09 - Theory.md ├── Episode 10 - Jo dikhta hai, vo bikta hai ├── Assignment.md ├── Theory │ └── Episode - 10 Theory.md └── code │ ├── README.md │ ├── index.css │ ├── index.html │ └── src │ ├── App.js │ ├── components │ ├── About.js │ ├── Body.js │ ├── Contact.js │ ├── Error.js │ ├── Footer.js │ ├── Grocery.js │ ├── Header.js │ ├── RestaurantCard.js │ ├── RestaurantMenu.js │ ├── Shimmer.js │ ├── ShimmerMenu.js │ ├── User.js │ └── UserClass.js │ └── utils │ ├── constants.js │ ├── useOnlineStatus.js │ └── useRestaurantMenu.js ├── Episode 11 - Data is the new oil ├── Assignment.md ├── Code │ ├── README.md │ ├── index.css │ ├── index.html │ └── src │ │ ├── App.js │ │ ├── components │ │ ├── About.js │ │ ├── Body.js │ │ ├── Contact.js │ │ ├── Error.js │ │ ├── Footer.js │ │ ├── Grocery.js │ │ ├── Header.js │ │ ├── ItemList.js │ │ ├── RestaurantCard.js │ │ ├── RestaurantCategory.js │ │ ├── RestaurantMenu.js │ │ ├── Shimmer.js │ │ ├── ShimmerMenu.js │ │ ├── User.js │ │ └── UserClass.js │ │ └── utils │ │ ├── UserContext.js │ │ ├── constants.js │ │ ├── useOnlineStatus.js │ │ └── useRestaurantMenu.js └── Theory │ └── Episode 11 - Thoery.md ├── Episode 12 - Let's Build Our Store ├── Assignment.md ├── Theory │ └── Episode 12 - Theory.md └── code │ ├── README.md │ ├── index.css │ ├── index.html │ ├── public │ └── icons8-fast-food-64.png │ └── src │ ├── App.js │ ├── components │ ├── About.js │ ├── Body.js │ ├── Cart.js │ ├── Contact.js │ ├── Error.js │ ├── Footer.js │ ├── Grocery.js │ ├── Header.js │ ├── ItemList.js │ ├── Loader.js │ ├── RestaurantCard.js │ ├── RestaurantCategory.js │ ├── RestaurantMenu.js │ ├── User.js │ └── UserClass.js │ └── utils │ ├── UserContext.js │ ├── appStore.js │ ├── cartSlice.js │ ├── constants.js │ ├── useOnlineStatus.js │ └── useRestaurantMenu.js ├── Episode 13 - Time for the Test ├── Assignment.md ├── Theory │ └── Episode 13 - Theory.md └── code │ ├── .parcelrc │ ├── babel.config.js │ ├── index.css │ ├── index.html │ ├── jest.config.js │ └── src │ ├── App.js │ ├── components │ ├── About.js │ ├── Body.js │ ├── Cart.js │ ├── Contact.js │ ├── Error.js │ ├── Footer.js │ ├── Grocery.js │ ├── Header.js │ ├── ItemList.js │ ├── Loader.js │ ├── RestaurantCard.js │ ├── RestaurantCategory.js │ ├── RestaurantMenu.js │ ├── User.js │ ├── UserClass.js │ ├── __tests__ │ │ ├── Cart.test.js │ │ ├── Contact.test.js │ │ ├── Header.test.js │ │ ├── RestaurantCard.test.js │ │ ├── Search.test.js │ │ └── sum.test.js │ ├── mocks │ │ ├── mockResListData.json │ │ ├── mockResMenu.json │ │ └── resCardMock.json │ └── sum.js │ └── utils │ ├── UserContext.js │ ├── appStore.js │ ├── cartSlice.js │ ├── constants.js │ ├── useOnlineStatus.js │ └── useRestaurantMenu.js ├── README-NOTES.MD ├── README.md ├── babel.config.js ├── index.css ├── index.html ├── jest.config.js ├── package.json ├── public └── icons8-fast-food-64.png ├── src ├── App.js ├── components │ ├── About.js │ ├── Body.js │ ├── Cart.js │ ├── Contact.js │ ├── Error.js │ ├── Footer.js │ ├── Grocery.js │ ├── Header.js │ ├── ItemList.js │ ├── Loader.js │ ├── RestaurantCard.js │ ├── RestaurantCategory.js │ ├── RestaurantMenu.js │ ├── User.js │ ├── UserClass.js │ ├── __tests__ │ │ ├── Cart.test.js │ │ ├── Contact.test.js │ │ ├── Header.test.js │ │ ├── RestaurantCard.test.js │ │ ├── Search.test.js │ │ └── sum.test.js │ ├── mocks │ │ ├── mockResListData.json │ │ ├── mockResMenu.json │ │ └── resCardMock.json │ └── sum.js └── utils │ ├── UserContext.js │ ├── appStore.js │ ├── cartSlice.js │ ├── constants.js │ ├── useOnlineStatus.js │ └── useRestaurantMenu.js └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | /.parcel-cache 4 | /coverage -------------------------------------------------------------------------------- /.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/.parcelrc -------------------------------------------------------------------------------- /.postcssrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/.postcssrc -------------------------------------------------------------------------------- /Episode 01 - Inception/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 01 - Inception/Assignment.md -------------------------------------------------------------------------------- /Episode 01 - Inception/Code/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 01 - Inception/Code/App.js -------------------------------------------------------------------------------- /Episode 01 - Inception/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 01 - Inception/Code/README.md -------------------------------------------------------------------------------- /Episode 01 - Inception/Code/index.css: -------------------------------------------------------------------------------- 1 | #heading { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /Episode 01 - Inception/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 01 - Inception/Code/index.html -------------------------------------------------------------------------------- /Episode 01 - Inception/Theory/Episode 01 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 01 - Inception/Theory/Episode 01 - Theory.md -------------------------------------------------------------------------------- /Episode 02 - Igniting Our App/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 02 - Igniting Our App/Assignment.md -------------------------------------------------------------------------------- /Episode 02 - Igniting Our App/Code/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 02 - Igniting Our App/Code/App.js -------------------------------------------------------------------------------- /Episode 02 - Igniting Our App/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 02 - Igniting Our App/Code/README.md -------------------------------------------------------------------------------- /Episode 02 - Igniting Our App/Code/index.css: -------------------------------------------------------------------------------- 1 | #heading { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /Episode 02 - Igniting Our App/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 02 - Igniting Our App/Code/index.html -------------------------------------------------------------------------------- /Episode 02 - Igniting Our App/Theory/Episode 02 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 02 - Igniting Our App/Theory/Episode 02 - Theory.md -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Assignment.md -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Code/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Code/App.js -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Code/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Code/Header.css -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Code/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Code/Header.js -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Code/README.md -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Code/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Code/icon.png -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Code/index.css: -------------------------------------------------------------------------------- 1 | #heading { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Code/index.html -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Code/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Code/profile.png -------------------------------------------------------------------------------- /Episode 03 - Laying the Foundation/Theory/Episode 03 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 03 - Laying the Foundation/Theory/Episode 03 - Theory.md -------------------------------------------------------------------------------- /Episode 04 - Talk is cheap, show me the code!/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 04 - Talk is cheap, show me the code!/Assignment.md -------------------------------------------------------------------------------- /Episode 04 - Talk is cheap, show me the code!/Code/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 04 - Talk is cheap, show me the code!/Code/App.js -------------------------------------------------------------------------------- /Episode 04 - Talk is cheap, show me the code!/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 04 - Talk is cheap, show me the code!/Code/README.md -------------------------------------------------------------------------------- /Episode 04 - Talk is cheap, show me the code!/Code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 04 - Talk is cheap, show me the code!/Code/index.css -------------------------------------------------------------------------------- /Episode 04 - Talk is cheap, show me the code!/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 04 - Talk is cheap, show me the code!/Code/index.html -------------------------------------------------------------------------------- /Episode 04 - Talk is cheap, show me the code!/Theory/Episode 04 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 04 - Talk is cheap, show me the code!/Theory/Episode 04 - Theory.md -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Assignment.md -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/README.md -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/src/App.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/src/index.css -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/src/index.html -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Code/src/utils/mockData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Code/src/utils/mockData.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/Theory/Episode 05 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/Theory/Episode 05 - Theory.md -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/Grocery.672e4dba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/Grocery.672e4dba.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/Grocery.672e4dba.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/Grocery.672e4dba.js.map -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/Grocery.c52c2ad2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/Grocery.c52c2ad2.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/Grocery.c52c2ad2.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/Grocery.c52c2ad2.js.map -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/icons8-fast-food-64.0a7c6916.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/icons8-fast-food-64.0a7c6916.png -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/icons8-fast-food-64.1a8f8321.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/icons8-fast-food-64.1a8f8321.png -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.0d94706d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.0d94706d.css -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.0d94706d.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.0d94706d.css.map -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.7271efb6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.7271efb6.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.7271efb6.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.7271efb6.js.map -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.7802dff6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.7802dff6.js -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.7802dff6.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.7802dff6.js.map -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.9e4c6fd2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.9e4c6fd2.css -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.9e4c6fd2.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.9e4c6fd2.css.map -------------------------------------------------------------------------------- /Episode 05 - Let's get Hooked/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 05 - Let's get Hooked/dist/index.html -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Assignment.md -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/README.md -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/index.css -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/index.html -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/src/App.js -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/src/components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/src/components/Shimmer.js -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 06 - Exploring The World/Theory/Episode 06 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 06 - Exploring The World/Theory/Episode 06 - Theory.md -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Assignment.md -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/README.md -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/index.css -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/index.html -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/App.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/About.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/Contact.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/Error.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/Footer.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/RestaurantMenu.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/Shimmer.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/components/ShimmerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/components/ShimmerMenu.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 07 - Finding the Path/Theory/Episode 07 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 07 - Finding the Path/Theory/Episode 07 - Theory.md -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Asssigment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Asssigment.md -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/README.md -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/index.css -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/index.html -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/App.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/About.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/Contact.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/Error.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/Footer.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/RestaurantMenu.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/Shimmer.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/ShimmerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/ShimmerMenu.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/User.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/components/UserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/components/UserClass.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 08 - Let's Get Classy/Theory/Episode 08 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 08 - Let's Get Classy/Theory/Episode 08 - Theory.md -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Assignment.md -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/README.md -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/index.css -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/index.html -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/App.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/About.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/Contact.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/Error.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/Footer.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/Grocery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/Grocery.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/RestaurantMenu.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/Shimmer.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/ShimmerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/ShimmerMenu.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/User.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/components/UserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/components/UserClass.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/utils/useOnlineStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/utils/useOnlineStatus.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Code/src/utils/useRestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Code/src/utils/useRestaurantMenu.js -------------------------------------------------------------------------------- /Episode 09 - Optimising Our App/Theory/Episode 09 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 09 - Optimising Our App/Theory/Episode 09 - Theory.md -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/Assignment.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/Theory/Episode - 10 Theory.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/index.css -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/index.html -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/App.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/About.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Contact.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Error.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Footer.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Grocery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Grocery.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/RestaurantMenu.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/Shimmer.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/ShimmerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/ShimmerMenu.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/User.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/UserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/components/UserClass.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/utils/useOnlineStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/utils/useOnlineStatus.js -------------------------------------------------------------------------------- /Episode 10 - Jo dikhta hai, vo bikta hai/code/src/utils/useRestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 10 - Jo dikhta hai, vo bikta hai/code/src/utils/useRestaurantMenu.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Assignment.md -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/README.md -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/index.css -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/index.html -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/App.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/About.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/Contact.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/Error.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/Footer.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/Grocery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/Grocery.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/ItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/ItemList.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/RestaurantCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/RestaurantCategory.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/RestaurantMenu.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/Shimmer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/Shimmer.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/ShimmerMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/ShimmerMenu.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/User.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/components/UserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/components/UserClass.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/utils/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/utils/UserContext.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/utils/useOnlineStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/utils/useOnlineStatus.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Code/src/utils/useRestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Code/src/utils/useRestaurantMenu.js -------------------------------------------------------------------------------- /Episode 11 - Data is the new oil/Theory/Episode 11 - Thoery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 11 - Data is the new oil/Theory/Episode 11 - Thoery.md -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/Assignment.md -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/Theory/Episode 12 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/Theory/Episode 12 - Theory.md -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/README.md -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/index.css -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/index.html -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/public/icons8-fast-food-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/public/icons8-fast-food-64.png -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/App.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/About.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/Cart.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/Contact.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/Error.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/Footer.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/Grocery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/Grocery.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/ItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/ItemList.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/Loader.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/RestaurantCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/RestaurantCategory.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/RestaurantMenu.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/User.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/components/UserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/components/UserClass.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/utils/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/utils/UserContext.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/utils/appStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/utils/appStore.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/utils/cartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/utils/cartSlice.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/utils/useOnlineStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/utils/useOnlineStatus.js -------------------------------------------------------------------------------- /Episode 12 - Let's Build Our Store/code/src/utils/useRestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 12 - Let's Build Our Store/code/src/utils/useRestaurantMenu.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/Assignment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/Assignment.md -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/Theory/Episode 13 - Theory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/Theory/Episode 13 - Theory.md -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/.parcelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/.parcelrc -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/babel.config.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/index.css -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/index.html -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/jest.config.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/App.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/About.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/Body.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/Cart.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/Contact.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/Error.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/Footer.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/Grocery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/Grocery.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/Header.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/ItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/ItemList.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/Loader.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/RestaurantCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/RestaurantCategory.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/RestaurantMenu.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/User.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/UserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/UserClass.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/__tests__/Cart.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/__tests__/Cart.test.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/__tests__/Contact.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/__tests__/Contact.test.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/__tests__/Header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/__tests__/Header.test.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/__tests__/RestaurantCard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/__tests__/RestaurantCard.test.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/__tests__/Search.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/__tests__/Search.test.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/__tests__/sum.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/__tests__/sum.test.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/mocks/mockResListData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/mocks/mockResListData.json -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/mocks/mockResMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/mocks/mockResMenu.json -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/mocks/resCardMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/components/mocks/resCardMock.json -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/components/sum.js: -------------------------------------------------------------------------------- 1 | export const sum = (a, b) => { 2 | return a + b; 3 | }; 4 | -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/utils/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/utils/UserContext.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/utils/appStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/utils/appStore.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/utils/cartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/utils/cartSlice.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/utils/constants.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/utils/useOnlineStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/utils/useOnlineStatus.js -------------------------------------------------------------------------------- /Episode 13 - Time for the Test/code/src/utils/useRestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/Episode 13 - Time for the Test/code/src/utils/useRestaurantMenu.js -------------------------------------------------------------------------------- /README-NOTES.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/README-NOTES.MD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/babel.config.js -------------------------------------------------------------------------------- /index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/index.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/index.html -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/package.json -------------------------------------------------------------------------------- /public/icons8-fast-food-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/public/icons8-fast-food-64.png -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/About.js -------------------------------------------------------------------------------- /src/components/Body.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/Body.js -------------------------------------------------------------------------------- /src/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/Cart.js -------------------------------------------------------------------------------- /src/components/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/Contact.js -------------------------------------------------------------------------------- /src/components/Error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/Error.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/Grocery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/Grocery.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/ItemList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/ItemList.js -------------------------------------------------------------------------------- /src/components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/Loader.js -------------------------------------------------------------------------------- /src/components/RestaurantCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/RestaurantCard.js -------------------------------------------------------------------------------- /src/components/RestaurantCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/RestaurantCategory.js -------------------------------------------------------------------------------- /src/components/RestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/RestaurantMenu.js -------------------------------------------------------------------------------- /src/components/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/User.js -------------------------------------------------------------------------------- /src/components/UserClass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/UserClass.js -------------------------------------------------------------------------------- /src/components/__tests__/Cart.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/__tests__/Cart.test.js -------------------------------------------------------------------------------- /src/components/__tests__/Contact.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/__tests__/Contact.test.js -------------------------------------------------------------------------------- /src/components/__tests__/Header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/__tests__/Header.test.js -------------------------------------------------------------------------------- /src/components/__tests__/RestaurantCard.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/__tests__/RestaurantCard.test.js -------------------------------------------------------------------------------- /src/components/__tests__/Search.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/__tests__/Search.test.js -------------------------------------------------------------------------------- /src/components/__tests__/sum.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/__tests__/sum.test.js -------------------------------------------------------------------------------- /src/components/mocks/mockResListData.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/mocks/mockResListData.json -------------------------------------------------------------------------------- /src/components/mocks/mockResMenu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/mocks/mockResMenu.json -------------------------------------------------------------------------------- /src/components/mocks/resCardMock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/components/mocks/resCardMock.json -------------------------------------------------------------------------------- /src/components/sum.js: -------------------------------------------------------------------------------- 1 | export const sum = (a, b) => { 2 | return a + b; 3 | }; 4 | -------------------------------------------------------------------------------- /src/utils/UserContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/utils/UserContext.js -------------------------------------------------------------------------------- /src/utils/appStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/utils/appStore.js -------------------------------------------------------------------------------- /src/utils/cartSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/utils/cartSlice.js -------------------------------------------------------------------------------- /src/utils/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/utils/constants.js -------------------------------------------------------------------------------- /src/utils/useOnlineStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/utils/useOnlineStatus.js -------------------------------------------------------------------------------- /src/utils/useRestaurantMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/src/utils/useRestaurantMenu.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sreenivasulu-Kalluru/Namaste-React/HEAD/tailwind.config.js --------------------------------------------------------------------------------