48 | );
49 | }
50 |
51 | export default App;
52 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
12 |
13 |
17 |
18 |
27 | React App
28 |
29 |
30 |
31 |
32 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Let's Build a Food Recipe App
2 | React API Project Tutorial Using Hooks, Axios and Firebase
3 |
4 | 
5 |
6 | ### Created & Maintained By
7 |
8 | [Sanskar Tiwari](https://github.com/theindianappguy) ([@indianappguy](https://twitter.com/indianappguy)) ([YouTube](https://www.youtube.com/c/SanskarTiwari))
9 |
10 | > If you found this project helpful or you learned something from the source code and want to thank me,
11 | > consider checking out what i am building at [MagicSlides.app](https://www.magicslides.app), [MagicForm.app](https://www.magicform.app) & [SheetAI.app](https://www.sheetai.app)
12 |
13 | ### License
14 |
15 | Copyright 2020 Sanskar Tiwari
16 |
17 | Licensed under the Apache License, Version 2.0 (the "License");
18 | you may not use this file except in compliance with the License.
19 | You may obtain a copy of the License at
20 |
21 | http://www.apache.org/licenses/LICENSE-2.0
22 |
23 | Unless required by applicable law or agreed to in writing, software
24 | distributed under the License is distributed on an "AS IS" BASIS,
25 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26 | See the License for the specific language governing permissions and
27 | limitations under the License.
28 |
29 |
30 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
31 |
32 | ## Available Scripts
33 |
34 | In the project directory, you can run:
35 |
36 | ### `yarn start`
37 |
38 | Runs the app in the development mode.\
39 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
40 |
41 | The page will reload if you make edits.\
42 | You will also see any lint errors in the console.
43 |
44 | ### `yarn test`
45 |
46 | Launches the test runner in the interactive watch mode.\
47 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
48 |
49 | ### `yarn build`
50 |
51 | Builds the app for production to the `build` folder.\
52 | It correctly bundles React in production mode and optimizes the build for the best performance.
53 |
54 | The build is minified and the filenames include the hashes.\
55 | Your app is ready to be deployed!
56 |
57 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
58 |
59 | ### `yarn eject`
60 |
61 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
62 |
63 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
64 |
65 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
66 |
67 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
68 |
69 | ## Learn More
70 |
71 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
72 |
73 | To learn React, check out the [React documentation](https://reactjs.org/).
74 |
75 | ### Code Splitting
76 |
77 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
78 |
79 | ### Analyzing the Bundle Size
80 |
81 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
82 |
83 | ### Making a Progressive Web App
84 |
85 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
86 |
87 | ### Advanced Configuration
88 |
89 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
90 |
91 | ### Deployment
92 |
93 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
94 |
95 | ### `yarn build` fails to minify
96 |
97 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
98 |
--------------------------------------------------------------------------------