├── 01-instaprofile ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ ├── Header.css │ │ ├── Header.js │ │ ├── ProfileBio.js │ │ ├── ProfileImage.js │ │ ├── ProfileStats.js │ │ └── ProfileUserSettings.js │ ├── index.js │ └── services │ │ └── SimpleScrapper.js └── yarn.lock ├── 02-chucknorrisfacts ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ ├── Header.js │ │ ├── JokeItem.js │ │ └── Main.js │ ├── index.css │ ├── index.js │ └── services │ │ └── api.js └── yarn.lock ├── 03-copywritersheet ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ ├── CategoryLabel.js │ │ ├── Header.js │ │ ├── Item.js │ │ └── Main.js │ ├── data │ │ └── index.js │ ├── index.js │ └── style.css └── yarn.lock ├── 04-productslisting ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ ├── Header.js │ │ └── Product.js │ ├── data │ │ └── index.js │ ├── index.js │ └── style.css └── yarn.lock ├── 05-poconews ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── index.css │ └── index.js └── yarn.lock ├── 06-bibleverse ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ ├── actions │ │ │ ├── Actions.css │ │ │ └── Actions.js │ │ ├── bible │ │ │ ├── Bible.js │ │ │ ├── BibleApi.js │ │ │ ├── Main.js │ │ │ └── Verse.js │ │ ├── card │ │ │ ├── Card.css │ │ │ └── Card.js │ │ └── header │ │ │ ├── Header.css │ │ │ └── Header.js │ ├── index.css │ └── index.js └── yarn.lock ├── 07-memegenerator ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── components │ │ ├── Header.js │ │ └── memegenerator │ │ │ ├── index.js │ │ │ └── presenter.js │ ├── index.js │ ├── services │ │ └── api.js │ └── style.css └── yarn.lock ├── 09-simplecrud_products ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── AddProduct.js │ ├── App.js │ ├── Header.js │ ├── ProductItem.js │ ├── index.js │ └── style.css └── yarn.lock └── 10-shoplist-mern ├── .gitignore ├── client ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.js │ ├── actions │ │ ├── itemActions.js │ │ └── types.js │ ├── components │ │ ├── NavbarApp.js │ │ └── ShoppingList │ │ │ ├── Index.js │ │ │ └── Presenter.js │ ├── index.css │ ├── index.js │ ├── reducers │ │ ├── index.js │ │ └── itemReducer.js │ └── store.js └── yarn.lock ├── models └── Item.js ├── package-lock.json ├── package.json ├── readme.md ├── router └── api │ └── item.js └── server.js /01-instaprofile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/.gitignore -------------------------------------------------------------------------------- /01-instaprofile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/README.md -------------------------------------------------------------------------------- /01-instaprofile/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/package.json -------------------------------------------------------------------------------- /01-instaprofile/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/public/favicon.ico -------------------------------------------------------------------------------- /01-instaprofile/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/public/index.html -------------------------------------------------------------------------------- /01-instaprofile/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/public/manifest.json -------------------------------------------------------------------------------- /01-instaprofile/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/App.js -------------------------------------------------------------------------------- /01-instaprofile/src/components/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/components/Header.css -------------------------------------------------------------------------------- /01-instaprofile/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/components/Header.js -------------------------------------------------------------------------------- /01-instaprofile/src/components/ProfileBio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/components/ProfileBio.js -------------------------------------------------------------------------------- /01-instaprofile/src/components/ProfileImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/components/ProfileImage.js -------------------------------------------------------------------------------- /01-instaprofile/src/components/ProfileStats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/components/ProfileStats.js -------------------------------------------------------------------------------- /01-instaprofile/src/components/ProfileUserSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/components/ProfileUserSettings.js -------------------------------------------------------------------------------- /01-instaprofile/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/index.js -------------------------------------------------------------------------------- /01-instaprofile/src/services/SimpleScrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/src/services/SimpleScrapper.js -------------------------------------------------------------------------------- /01-instaprofile/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/01-instaprofile/yarn.lock -------------------------------------------------------------------------------- /02-chucknorrisfacts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/.gitignore -------------------------------------------------------------------------------- /02-chucknorrisfacts/README.md: -------------------------------------------------------------------------------- 1 | Some Chuck Norris Facts 2 | 3 | ![Ver Image](https://i.imgur.com/fwPs0oj.png) 4 | -------------------------------------------------------------------------------- /02-chucknorrisfacts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/package.json -------------------------------------------------------------------------------- /02-chucknorrisfacts/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/public/favicon.ico -------------------------------------------------------------------------------- /02-chucknorrisfacts/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/public/index.html -------------------------------------------------------------------------------- /02-chucknorrisfacts/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/public/manifest.json -------------------------------------------------------------------------------- /02-chucknorrisfacts/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/src/App.js -------------------------------------------------------------------------------- /02-chucknorrisfacts/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/src/components/Header.js -------------------------------------------------------------------------------- /02-chucknorrisfacts/src/components/JokeItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/src/components/JokeItem.js -------------------------------------------------------------------------------- /02-chucknorrisfacts/src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/src/components/Main.js -------------------------------------------------------------------------------- /02-chucknorrisfacts/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/src/index.css -------------------------------------------------------------------------------- /02-chucknorrisfacts/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/src/index.js -------------------------------------------------------------------------------- /02-chucknorrisfacts/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/src/services/api.js -------------------------------------------------------------------------------- /02-chucknorrisfacts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/02-chucknorrisfacts/yarn.lock -------------------------------------------------------------------------------- /03-copywritersheet/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/.gitignore -------------------------------------------------------------------------------- /03-copywritersheet/README.md: -------------------------------------------------------------------------------- 1 | Copywriter SheetCheat 2 | 3 | ![View Image](https://i.imgur.com/niVvBfS.png) -------------------------------------------------------------------------------- /03-copywritersheet/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/package.json -------------------------------------------------------------------------------- /03-copywritersheet/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/public/favicon.ico -------------------------------------------------------------------------------- /03-copywritersheet/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/public/index.html -------------------------------------------------------------------------------- /03-copywritersheet/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/public/manifest.json -------------------------------------------------------------------------------- /03-copywritersheet/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/src/App.js -------------------------------------------------------------------------------- /03-copywritersheet/src/components/CategoryLabel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/src/components/CategoryLabel.js -------------------------------------------------------------------------------- /03-copywritersheet/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/src/components/Header.js -------------------------------------------------------------------------------- /03-copywritersheet/src/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/src/components/Item.js -------------------------------------------------------------------------------- /03-copywritersheet/src/components/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/src/components/Main.js -------------------------------------------------------------------------------- /03-copywritersheet/src/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/src/data/index.js -------------------------------------------------------------------------------- /03-copywritersheet/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/src/index.js -------------------------------------------------------------------------------- /03-copywritersheet/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/src/style.css -------------------------------------------------------------------------------- /03-copywritersheet/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/03-copywritersheet/yarn.lock -------------------------------------------------------------------------------- /04-productslisting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/.gitignore -------------------------------------------------------------------------------- /04-productslisting/README.md: -------------------------------------------------------------------------------- 1 | Product Listing 2 | 3 | ![View Image](https://i.imgur.com/MpFEFuP.png) -------------------------------------------------------------------------------- /04-productslisting/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/package.json -------------------------------------------------------------------------------- /04-productslisting/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/public/favicon.ico -------------------------------------------------------------------------------- /04-productslisting/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/public/index.html -------------------------------------------------------------------------------- /04-productslisting/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/public/manifest.json -------------------------------------------------------------------------------- /04-productslisting/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/src/App.js -------------------------------------------------------------------------------- /04-productslisting/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/src/components/Header.js -------------------------------------------------------------------------------- /04-productslisting/src/components/Product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/src/components/Product.js -------------------------------------------------------------------------------- /04-productslisting/src/data/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/src/data/index.js -------------------------------------------------------------------------------- /04-productslisting/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/src/index.js -------------------------------------------------------------------------------- /04-productslisting/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/src/style.css -------------------------------------------------------------------------------- /04-productslisting/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/04-productslisting/yarn.lock -------------------------------------------------------------------------------- /05-poconews/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/.gitignore -------------------------------------------------------------------------------- /05-poconews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/README.md -------------------------------------------------------------------------------- /05-poconews/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/package.json -------------------------------------------------------------------------------- /05-poconews/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/public/favicon.ico -------------------------------------------------------------------------------- /05-poconews/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/public/index.html -------------------------------------------------------------------------------- /05-poconews/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/public/manifest.json -------------------------------------------------------------------------------- /05-poconews/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/src/App.js -------------------------------------------------------------------------------- /05-poconews/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/src/index.css -------------------------------------------------------------------------------- /05-poconews/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/src/index.js -------------------------------------------------------------------------------- /05-poconews/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/05-poconews/yarn.lock -------------------------------------------------------------------------------- /06-bibleverse/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/.gitignore -------------------------------------------------------------------------------- /06-bibleverse/README.md: -------------------------------------------------------------------------------- 1 | Using Bible Api and Tweet a verse -------------------------------------------------------------------------------- /06-bibleverse/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/package.json -------------------------------------------------------------------------------- /06-bibleverse/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/public/favicon.ico -------------------------------------------------------------------------------- /06-bibleverse/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/public/index.html -------------------------------------------------------------------------------- /06-bibleverse/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/public/manifest.json -------------------------------------------------------------------------------- /06-bibleverse/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/App.js -------------------------------------------------------------------------------- /06-bibleverse/src/components/actions/Actions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/actions/Actions.css -------------------------------------------------------------------------------- /06-bibleverse/src/components/actions/Actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/actions/Actions.js -------------------------------------------------------------------------------- /06-bibleverse/src/components/bible/Bible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/bible/Bible.js -------------------------------------------------------------------------------- /06-bibleverse/src/components/bible/BibleApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/bible/BibleApi.js -------------------------------------------------------------------------------- /06-bibleverse/src/components/bible/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/bible/Main.js -------------------------------------------------------------------------------- /06-bibleverse/src/components/bible/Verse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/bible/Verse.js -------------------------------------------------------------------------------- /06-bibleverse/src/components/card/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/card/Card.css -------------------------------------------------------------------------------- /06-bibleverse/src/components/card/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/card/Card.js -------------------------------------------------------------------------------- /06-bibleverse/src/components/header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/header/Header.css -------------------------------------------------------------------------------- /06-bibleverse/src/components/header/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/components/header/Header.js -------------------------------------------------------------------------------- /06-bibleverse/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/index.css -------------------------------------------------------------------------------- /06-bibleverse/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/src/index.js -------------------------------------------------------------------------------- /06-bibleverse/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/06-bibleverse/yarn.lock -------------------------------------------------------------------------------- /07-memegenerator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/.gitignore -------------------------------------------------------------------------------- /07-memegenerator/README.md: -------------------------------------------------------------------------------- 1 | # Meme Generator 2 | 3 | Having fun with meme api. 4 | 5 | ![View Image](https://i.imgur.com/60WgQTd.png) 6 | -------------------------------------------------------------------------------- /07-memegenerator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/package.json -------------------------------------------------------------------------------- /07-memegenerator/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/public/favicon.ico -------------------------------------------------------------------------------- /07-memegenerator/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/public/index.html -------------------------------------------------------------------------------- /07-memegenerator/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/public/manifest.json -------------------------------------------------------------------------------- /07-memegenerator/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/src/App.js -------------------------------------------------------------------------------- /07-memegenerator/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/src/components/Header.js -------------------------------------------------------------------------------- /07-memegenerator/src/components/memegenerator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/src/components/memegenerator/index.js -------------------------------------------------------------------------------- /07-memegenerator/src/components/memegenerator/presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/src/components/memegenerator/presenter.js -------------------------------------------------------------------------------- /07-memegenerator/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/src/index.js -------------------------------------------------------------------------------- /07-memegenerator/src/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/src/services/api.js -------------------------------------------------------------------------------- /07-memegenerator/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/src/style.css -------------------------------------------------------------------------------- /07-memegenerator/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/07-memegenerator/yarn.lock -------------------------------------------------------------------------------- /09-simplecrud_products/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/.gitignore -------------------------------------------------------------------------------- /09-simplecrud_products/README.md: -------------------------------------------------------------------------------- 1 | ![View Image](https://i.imgur.com/RXfI33h.png) -------------------------------------------------------------------------------- /09-simplecrud_products/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/package.json -------------------------------------------------------------------------------- /09-simplecrud_products/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/public/favicon.ico -------------------------------------------------------------------------------- /09-simplecrud_products/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/public/index.html -------------------------------------------------------------------------------- /09-simplecrud_products/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/public/manifest.json -------------------------------------------------------------------------------- /09-simplecrud_products/src/AddProduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/src/AddProduct.js -------------------------------------------------------------------------------- /09-simplecrud_products/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/src/App.js -------------------------------------------------------------------------------- /09-simplecrud_products/src/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/src/Header.js -------------------------------------------------------------------------------- /09-simplecrud_products/src/ProductItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/src/ProductItem.js -------------------------------------------------------------------------------- /09-simplecrud_products/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/src/index.js -------------------------------------------------------------------------------- /09-simplecrud_products/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/src/style.css -------------------------------------------------------------------------------- /09-simplecrud_products/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/09-simplecrud_products/yarn.lock -------------------------------------------------------------------------------- /10-shoplist-mern/.gitignore: -------------------------------------------------------------------------------- 1 | config/ 2 | node_modules/ -------------------------------------------------------------------------------- /10-shoplist-mern/client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/.gitignore -------------------------------------------------------------------------------- /10-shoplist-mern/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/README.md -------------------------------------------------------------------------------- /10-shoplist-mern/client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/package-lock.json -------------------------------------------------------------------------------- /10-shoplist-mern/client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/package.json -------------------------------------------------------------------------------- /10-shoplist-mern/client/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/public/favicon.ico -------------------------------------------------------------------------------- /10-shoplist-mern/client/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/public/index.html -------------------------------------------------------------------------------- /10-shoplist-mern/client/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/public/manifest.json -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/App.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/actions/itemActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/actions/itemActions.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/actions/types.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/components/NavbarApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/components/NavbarApp.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/components/ShoppingList/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/components/ShoppingList/Index.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/components/ShoppingList/Presenter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/components/ShoppingList/Presenter.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/index.css -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/index.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/reducers/index.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/reducers/itemReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/reducers/itemReducer.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/src/store.js -------------------------------------------------------------------------------- /10-shoplist-mern/client/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/client/yarn.lock -------------------------------------------------------------------------------- /10-shoplist-mern/models/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/models/Item.js -------------------------------------------------------------------------------- /10-shoplist-mern/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/package-lock.json -------------------------------------------------------------------------------- /10-shoplist-mern/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/package.json -------------------------------------------------------------------------------- /10-shoplist-mern/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/readme.md -------------------------------------------------------------------------------- /10-shoplist-mern/router/api/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/router/api/item.js -------------------------------------------------------------------------------- /10-shoplist-mern/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maykbrito/react-projs-to-learn-basics/HEAD/10-shoplist-mern/server.js --------------------------------------------------------------------------------