├── .gitignore ├── first-react-app ├── .gitignore ├── README.md ├── package.json ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ ├── Footer.js │ │ ├── Header.js │ │ └── Main.js │ ├── index.js │ └── react-logo.png └── yarn.lock ├── images ├── become_patreon.png ├── className_warning.png ├── cleaned_launched.png ├── components.png ├── create_react_app_file_cleaned.png ├── create_react_app_files.png ├── dynamic_data.png ├── first_react_app.png ├── internal_style.png ├── map_list_id.png ├── react_for_everyone.png ├── react_logo.gif ├── react_popularity.png ├── removing_unique_id_warning.png ├── rendering_componnets.png ├── rendering_jsx.png ├── rendering_list.png ├── rendering_more_content.png ├── rendering_multiple_js_elements.png ├── styling_all_jsx_elements.png ├── styling_jsx_element.png └── vue_popularity.png ├── react-starter ├── .gitignore ├── README.md ├── package.json ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ └── Header.js │ ├── index.css │ └── index.js └── yarn.lock └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/.gitignore -------------------------------------------------------------------------------- /first-react-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/.gitignore -------------------------------------------------------------------------------- /first-react-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/README.md -------------------------------------------------------------------------------- /first-react-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/package.json -------------------------------------------------------------------------------- /first-react-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/src/App.css -------------------------------------------------------------------------------- /first-react-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/src/App.js -------------------------------------------------------------------------------- /first-react-app/src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/src/components/Footer.js -------------------------------------------------------------------------------- /first-react-app/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/src/components/Header.js -------------------------------------------------------------------------------- /first-react-app/src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/src/components/Main.js -------------------------------------------------------------------------------- /first-react-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/src/index.js -------------------------------------------------------------------------------- /first-react-app/src/react-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/src/react-logo.png -------------------------------------------------------------------------------- /first-react-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/first-react-app/yarn.lock -------------------------------------------------------------------------------- /images/become_patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/become_patreon.png -------------------------------------------------------------------------------- /images/className_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/className_warning.png -------------------------------------------------------------------------------- /images/cleaned_launched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/cleaned_launched.png -------------------------------------------------------------------------------- /images/components.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/components.png -------------------------------------------------------------------------------- /images/create_react_app_file_cleaned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/create_react_app_file_cleaned.png -------------------------------------------------------------------------------- /images/create_react_app_files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/create_react_app_files.png -------------------------------------------------------------------------------- /images/dynamic_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/dynamic_data.png -------------------------------------------------------------------------------- /images/first_react_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/first_react_app.png -------------------------------------------------------------------------------- /images/internal_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/internal_style.png -------------------------------------------------------------------------------- /images/map_list_id.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/map_list_id.png -------------------------------------------------------------------------------- /images/react_for_everyone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/react_for_everyone.png -------------------------------------------------------------------------------- /images/react_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/react_logo.gif -------------------------------------------------------------------------------- /images/react_popularity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/react_popularity.png -------------------------------------------------------------------------------- /images/removing_unique_id_warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/removing_unique_id_warning.png -------------------------------------------------------------------------------- /images/rendering_componnets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/rendering_componnets.png -------------------------------------------------------------------------------- /images/rendering_jsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/rendering_jsx.png -------------------------------------------------------------------------------- /images/rendering_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/rendering_list.png -------------------------------------------------------------------------------- /images/rendering_more_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/rendering_more_content.png -------------------------------------------------------------------------------- /images/rendering_multiple_js_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/rendering_multiple_js_elements.png -------------------------------------------------------------------------------- /images/styling_all_jsx_elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/styling_all_jsx_elements.png -------------------------------------------------------------------------------- /images/styling_jsx_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/styling_jsx_element.png -------------------------------------------------------------------------------- /images/vue_popularity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/images/vue_popularity.png -------------------------------------------------------------------------------- /react-starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/.gitignore -------------------------------------------------------------------------------- /react-starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/README.md -------------------------------------------------------------------------------- /react-starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/package.json -------------------------------------------------------------------------------- /react-starter/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/src/App.css -------------------------------------------------------------------------------- /react-starter/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/src/App.js -------------------------------------------------------------------------------- /react-starter/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/src/components/Header.js -------------------------------------------------------------------------------- /react-starter/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/src/index.css -------------------------------------------------------------------------------- /react-starter/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/src/index.js -------------------------------------------------------------------------------- /react-starter/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/react-starter/yarn.lock -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Asabeneh/React-For-Everyone/HEAD/readme.md --------------------------------------------------------------------------------