├── README.md ├── _screenshots ├── bookfolio.png ├── contact.png ├── countdown.png ├── manage_employees_1.png ├── manage_employees_2.png ├── manage_employees_3.png ├── movies_crud_1.png ├── movies_crud_2.png ├── rrd_1.png ├── rrd_2.png ├── rrd_3.png ├── rrd_4.png ├── rrd_5.png ├── weather_1.png └── weather_2.png ├── bookfolio ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── components │ │ ├── App.js │ │ ├── Book.css │ │ ├── Book.js │ │ ├── BookList.css │ │ └── BookList.js │ ├── context │ │ ├── BookContext.js │ │ └── ThemeContext.js │ └── index.js └── yarn.lock ├── breaking-bad-app ├── .env ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ ├── Characters │ │ │ └── index.jsx │ │ └── Header │ │ │ ├── Header.jsx │ │ │ └── styles.css │ ├── index.css │ ├── index.js │ ├── pages │ │ ├── CharacterDetails.jsx │ │ ├── Characters.jsx │ │ └── Quotes.jsx │ └── redux │ │ ├── characters │ │ └── chartactersSlice.js │ │ ├── quotes │ │ └── quotesSlice.js │ │ └── store.js └── yarn.lock ├── contact ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ └── Contacts │ │ │ ├── Form │ │ │ └── index.js │ │ │ ├── List │ │ │ └── index.js │ │ │ ├── index.js │ │ │ └── style.css │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js └── yarn.lock ├── countdown ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ └── Countdown.js │ ├── images │ │ └── clock.jpg │ ├── index.css │ └── index.js └── yarn.lock ├── manage_employees ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.js │ ├── components │ │ ├── AddForm.js │ │ ├── EditForm.js │ │ ├── Employee.js │ │ ├── EmployeeList.js │ │ └── Pagination.js │ ├── context │ │ └── EmployeeContext.js │ ├── index.css │ └── index.js └── yarn.lock ├── movies_crud ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── api │ │ └── movies.json │ ├── components │ │ ├── AddMovie.js │ │ ├── App.js │ │ ├── EditMovie.js │ │ ├── MovieList.js │ │ └── SearchBar.js │ └── index.js └── yarn.lock ├── notes-redux ├── .gitignore ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── modules.xml │ ├── notes-app.iml │ └── vcs.xml ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ ├── ColorButton.jsx │ │ ├── Content.jsx │ │ ├── Header.jsx │ │ ├── NoteInput.jsx │ │ ├── NoteItem.jsx │ │ └── Search.jsx │ ├── index.css │ ├── index.js │ └── redux │ │ ├── notes │ │ └── notesSlice.js │ │ └── store.js └── yarn.lock ├── react_router_demo ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ ├── About │ │ │ └── index.js │ │ ├── Contact │ │ │ └── index.js │ │ ├── Container │ │ │ └── index.js │ │ ├── Context │ │ │ └── ThemeContext.js │ │ ├── Error │ │ │ └── 404 │ │ │ │ └── index.js │ │ ├── Footer │ │ │ └── index.js │ │ ├── Form │ │ │ └── components │ │ │ │ └── validation.js │ │ ├── Home │ │ │ └── index.js │ │ ├── User │ │ │ └── index.js │ │ └── Users │ │ │ └── index.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reportWebVitals.js │ └── setupTests.js └── yarn.lock ├── spend-money-app ├── .gitignore ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── Project_Default.xml │ ├── modules.xml │ ├── spend-money-app.iml │ └── vcs.xml ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ ├── Card.jsx │ │ ├── CardItem.jsx │ │ ├── Footer.jsx │ │ └── Header.jsx │ ├── helpers.js │ ├── index.css │ ├── index.js │ └── products.json └── yarn.lock └── weather_forecast ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── City │ │ └── index.js │ ├── Container │ │ └── index.js │ └── Forecast │ │ └── index.js ├── context │ └── index.js ├── data │ └── data.json ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js └── yarn.lock /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/README.md -------------------------------------------------------------------------------- /_screenshots/bookfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/bookfolio.png -------------------------------------------------------------------------------- /_screenshots/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/contact.png -------------------------------------------------------------------------------- /_screenshots/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/countdown.png -------------------------------------------------------------------------------- /_screenshots/manage_employees_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/manage_employees_1.png -------------------------------------------------------------------------------- /_screenshots/manage_employees_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/manage_employees_2.png -------------------------------------------------------------------------------- /_screenshots/manage_employees_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/manage_employees_3.png -------------------------------------------------------------------------------- /_screenshots/movies_crud_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/movies_crud_1.png -------------------------------------------------------------------------------- /_screenshots/movies_crud_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/movies_crud_2.png -------------------------------------------------------------------------------- /_screenshots/rrd_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/rrd_1.png -------------------------------------------------------------------------------- /_screenshots/rrd_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/rrd_2.png -------------------------------------------------------------------------------- /_screenshots/rrd_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/rrd_3.png -------------------------------------------------------------------------------- /_screenshots/rrd_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/rrd_4.png -------------------------------------------------------------------------------- /_screenshots/rrd_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/rrd_5.png -------------------------------------------------------------------------------- /_screenshots/weather_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/weather_1.png -------------------------------------------------------------------------------- /_screenshots/weather_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/_screenshots/weather_2.png -------------------------------------------------------------------------------- /bookfolio/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/.gitignore -------------------------------------------------------------------------------- /bookfolio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/README.md -------------------------------------------------------------------------------- /bookfolio/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/package-lock.json -------------------------------------------------------------------------------- /bookfolio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/package.json -------------------------------------------------------------------------------- /bookfolio/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/public/favicon.ico -------------------------------------------------------------------------------- /bookfolio/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/public/index.html -------------------------------------------------------------------------------- /bookfolio/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/public/logo192.png -------------------------------------------------------------------------------- /bookfolio/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/public/logo512.png -------------------------------------------------------------------------------- /bookfolio/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/public/manifest.json -------------------------------------------------------------------------------- /bookfolio/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/public/robots.txt -------------------------------------------------------------------------------- /bookfolio/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/src/components/App.js -------------------------------------------------------------------------------- /bookfolio/src/components/Book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/src/components/Book.css -------------------------------------------------------------------------------- /bookfolio/src/components/Book.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/src/components/Book.js -------------------------------------------------------------------------------- /bookfolio/src/components/BookList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/src/components/BookList.css -------------------------------------------------------------------------------- /bookfolio/src/components/BookList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/src/components/BookList.js -------------------------------------------------------------------------------- /bookfolio/src/context/BookContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/src/context/BookContext.js -------------------------------------------------------------------------------- /bookfolio/src/context/ThemeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/src/context/ThemeContext.js -------------------------------------------------------------------------------- /bookfolio/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/src/index.js -------------------------------------------------------------------------------- /bookfolio/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/bookfolio/yarn.lock -------------------------------------------------------------------------------- /breaking-bad-app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/.env -------------------------------------------------------------------------------- /breaking-bad-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/.gitignore -------------------------------------------------------------------------------- /breaking-bad-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/README.md -------------------------------------------------------------------------------- /breaking-bad-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/package-lock.json -------------------------------------------------------------------------------- /breaking-bad-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/package.json -------------------------------------------------------------------------------- /breaking-bad-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/public/favicon.ico -------------------------------------------------------------------------------- /breaking-bad-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/public/index.html -------------------------------------------------------------------------------- /breaking-bad-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/public/logo192.png -------------------------------------------------------------------------------- /breaking-bad-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/public/logo512.png -------------------------------------------------------------------------------- /breaking-bad-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/public/manifest.json -------------------------------------------------------------------------------- /breaking-bad-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/public/robots.txt -------------------------------------------------------------------------------- /breaking-bad-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/App.css -------------------------------------------------------------------------------- /breaking-bad-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/App.js -------------------------------------------------------------------------------- /breaking-bad-app/src/components/Characters/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/components/Characters/index.jsx -------------------------------------------------------------------------------- /breaking-bad-app/src/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/components/Header/Header.jsx -------------------------------------------------------------------------------- /breaking-bad-app/src/components/Header/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/components/Header/styles.css -------------------------------------------------------------------------------- /breaking-bad-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/index.css -------------------------------------------------------------------------------- /breaking-bad-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/index.js -------------------------------------------------------------------------------- /breaking-bad-app/src/pages/CharacterDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/pages/CharacterDetails.jsx -------------------------------------------------------------------------------- /breaking-bad-app/src/pages/Characters.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/pages/Characters.jsx -------------------------------------------------------------------------------- /breaking-bad-app/src/pages/Quotes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/pages/Quotes.jsx -------------------------------------------------------------------------------- /breaking-bad-app/src/redux/characters/chartactersSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/redux/characters/chartactersSlice.js -------------------------------------------------------------------------------- /breaking-bad-app/src/redux/quotes/quotesSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/redux/quotes/quotesSlice.js -------------------------------------------------------------------------------- /breaking-bad-app/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/src/redux/store.js -------------------------------------------------------------------------------- /breaking-bad-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/breaking-bad-app/yarn.lock -------------------------------------------------------------------------------- /contact/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/.gitignore -------------------------------------------------------------------------------- /contact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/README.md -------------------------------------------------------------------------------- /contact/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/package-lock.json -------------------------------------------------------------------------------- /contact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/package.json -------------------------------------------------------------------------------- /contact/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/public/favicon.ico -------------------------------------------------------------------------------- /contact/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/public/index.html -------------------------------------------------------------------------------- /contact/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/public/logo192.png -------------------------------------------------------------------------------- /contact/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/public/logo512.png -------------------------------------------------------------------------------- /contact/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/public/manifest.json -------------------------------------------------------------------------------- /contact/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/public/robots.txt -------------------------------------------------------------------------------- /contact/src/App.css: -------------------------------------------------------------------------------- 1 | .App { 2 | text-align: center; 3 | } -------------------------------------------------------------------------------- /contact/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/App.js -------------------------------------------------------------------------------- /contact/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/App.test.js -------------------------------------------------------------------------------- /contact/src/components/Contacts/Form/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/components/Contacts/Form/index.js -------------------------------------------------------------------------------- /contact/src/components/Contacts/List/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/components/Contacts/List/index.js -------------------------------------------------------------------------------- /contact/src/components/Contacts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/components/Contacts/index.js -------------------------------------------------------------------------------- /contact/src/components/Contacts/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/components/Contacts/style.css -------------------------------------------------------------------------------- /contact/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/index.css -------------------------------------------------------------------------------- /contact/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/index.js -------------------------------------------------------------------------------- /contact/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/logo.svg -------------------------------------------------------------------------------- /contact/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/reportWebVitals.js -------------------------------------------------------------------------------- /contact/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/src/setupTests.js -------------------------------------------------------------------------------- /contact/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/contact/yarn.lock -------------------------------------------------------------------------------- /countdown/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/.gitignore -------------------------------------------------------------------------------- /countdown/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/README.md -------------------------------------------------------------------------------- /countdown/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/package-lock.json -------------------------------------------------------------------------------- /countdown/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/package.json -------------------------------------------------------------------------------- /countdown/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/public/favicon.ico -------------------------------------------------------------------------------- /countdown/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/public/index.html -------------------------------------------------------------------------------- /countdown/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/public/logo192.png -------------------------------------------------------------------------------- /countdown/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/public/logo512.png -------------------------------------------------------------------------------- /countdown/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/public/manifest.json -------------------------------------------------------------------------------- /countdown/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/public/robots.txt -------------------------------------------------------------------------------- /countdown/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/src/App.css -------------------------------------------------------------------------------- /countdown/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/src/App.js -------------------------------------------------------------------------------- /countdown/src/components/Countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/src/components/Countdown.js -------------------------------------------------------------------------------- /countdown/src/images/clock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/src/images/clock.jpg -------------------------------------------------------------------------------- /countdown/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/src/index.css -------------------------------------------------------------------------------- /countdown/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/src/index.js -------------------------------------------------------------------------------- /countdown/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/countdown/yarn.lock -------------------------------------------------------------------------------- /manage_employees/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/.gitignore -------------------------------------------------------------------------------- /manage_employees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/README.md -------------------------------------------------------------------------------- /manage_employees/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/package-lock.json -------------------------------------------------------------------------------- /manage_employees/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/package.json -------------------------------------------------------------------------------- /manage_employees/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/public/favicon.ico -------------------------------------------------------------------------------- /manage_employees/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/public/index.html -------------------------------------------------------------------------------- /manage_employees/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/public/logo192.png -------------------------------------------------------------------------------- /manage_employees/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/public/logo512.png -------------------------------------------------------------------------------- /manage_employees/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/public/manifest.json -------------------------------------------------------------------------------- /manage_employees/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/public/robots.txt -------------------------------------------------------------------------------- /manage_employees/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/App.js -------------------------------------------------------------------------------- /manage_employees/src/components/AddForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/components/AddForm.js -------------------------------------------------------------------------------- /manage_employees/src/components/EditForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/components/EditForm.js -------------------------------------------------------------------------------- /manage_employees/src/components/Employee.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/components/Employee.js -------------------------------------------------------------------------------- /manage_employees/src/components/EmployeeList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/components/EmployeeList.js -------------------------------------------------------------------------------- /manage_employees/src/components/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/components/Pagination.js -------------------------------------------------------------------------------- /manage_employees/src/context/EmployeeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/context/EmployeeContext.js -------------------------------------------------------------------------------- /manage_employees/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/index.css -------------------------------------------------------------------------------- /manage_employees/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/src/index.js -------------------------------------------------------------------------------- /manage_employees/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/manage_employees/yarn.lock -------------------------------------------------------------------------------- /movies_crud/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/.gitignore -------------------------------------------------------------------------------- /movies_crud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/README.md -------------------------------------------------------------------------------- /movies_crud/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/package-lock.json -------------------------------------------------------------------------------- /movies_crud/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/package.json -------------------------------------------------------------------------------- /movies_crud/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/public/favicon.ico -------------------------------------------------------------------------------- /movies_crud/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/public/index.html -------------------------------------------------------------------------------- /movies_crud/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/public/logo192.png -------------------------------------------------------------------------------- /movies_crud/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/public/logo512.png -------------------------------------------------------------------------------- /movies_crud/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/public/manifest.json -------------------------------------------------------------------------------- /movies_crud/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/public/robots.txt -------------------------------------------------------------------------------- /movies_crud/src/api/movies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/src/api/movies.json -------------------------------------------------------------------------------- /movies_crud/src/components/AddMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/src/components/AddMovie.js -------------------------------------------------------------------------------- /movies_crud/src/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/src/components/App.js -------------------------------------------------------------------------------- /movies_crud/src/components/EditMovie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/src/components/EditMovie.js -------------------------------------------------------------------------------- /movies_crud/src/components/MovieList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/src/components/MovieList.js -------------------------------------------------------------------------------- /movies_crud/src/components/SearchBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/src/components/SearchBar.js -------------------------------------------------------------------------------- /movies_crud/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/src/index.js -------------------------------------------------------------------------------- /movies_crud/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/movies_crud/yarn.lock -------------------------------------------------------------------------------- /notes-redux/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/.gitignore -------------------------------------------------------------------------------- /notes-redux/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/.idea/.gitignore -------------------------------------------------------------------------------- /notes-redux/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /notes-redux/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/.idea/modules.xml -------------------------------------------------------------------------------- /notes-redux/.idea/notes-app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/.idea/notes-app.iml -------------------------------------------------------------------------------- /notes-redux/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/.idea/vcs.xml -------------------------------------------------------------------------------- /notes-redux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/README.md -------------------------------------------------------------------------------- /notes-redux/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/package.json -------------------------------------------------------------------------------- /notes-redux/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/public/favicon.ico -------------------------------------------------------------------------------- /notes-redux/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/public/index.html -------------------------------------------------------------------------------- /notes-redux/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/public/logo192.png -------------------------------------------------------------------------------- /notes-redux/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/public/logo512.png -------------------------------------------------------------------------------- /notes-redux/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/public/manifest.json -------------------------------------------------------------------------------- /notes-redux/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/public/robots.txt -------------------------------------------------------------------------------- /notes-redux/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/App.css -------------------------------------------------------------------------------- /notes-redux/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/App.js -------------------------------------------------------------------------------- /notes-redux/src/components/ColorButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/components/ColorButton.jsx -------------------------------------------------------------------------------- /notes-redux/src/components/Content.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/components/Content.jsx -------------------------------------------------------------------------------- /notes-redux/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/components/Header.jsx -------------------------------------------------------------------------------- /notes-redux/src/components/NoteInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/components/NoteInput.jsx -------------------------------------------------------------------------------- /notes-redux/src/components/NoteItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/components/NoteItem.jsx -------------------------------------------------------------------------------- /notes-redux/src/components/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/components/Search.jsx -------------------------------------------------------------------------------- /notes-redux/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/index.css -------------------------------------------------------------------------------- /notes-redux/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/index.js -------------------------------------------------------------------------------- /notes-redux/src/redux/notes/notesSlice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/redux/notes/notesSlice.js -------------------------------------------------------------------------------- /notes-redux/src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/src/redux/store.js -------------------------------------------------------------------------------- /notes-redux/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/notes-redux/yarn.lock -------------------------------------------------------------------------------- /react_router_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/.gitignore -------------------------------------------------------------------------------- /react_router_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/README.md -------------------------------------------------------------------------------- /react_router_demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/package-lock.json -------------------------------------------------------------------------------- /react_router_demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/package.json -------------------------------------------------------------------------------- /react_router_demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/public/favicon.ico -------------------------------------------------------------------------------- /react_router_demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/public/index.html -------------------------------------------------------------------------------- /react_router_demo/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/public/logo192.png -------------------------------------------------------------------------------- /react_router_demo/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/public/logo512.png -------------------------------------------------------------------------------- /react_router_demo/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/public/manifest.json -------------------------------------------------------------------------------- /react_router_demo/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/public/robots.txt -------------------------------------------------------------------------------- /react_router_demo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/App.css -------------------------------------------------------------------------------- /react_router_demo/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/App.js -------------------------------------------------------------------------------- /react_router_demo/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/App.test.js -------------------------------------------------------------------------------- /react_router_demo/src/components/About/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/About/index.js -------------------------------------------------------------------------------- /react_router_demo/src/components/Contact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/Contact/index.js -------------------------------------------------------------------------------- /react_router_demo/src/components/Container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/Container/index.js -------------------------------------------------------------------------------- /react_router_demo/src/components/Context/ThemeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/Context/ThemeContext.js -------------------------------------------------------------------------------- /react_router_demo/src/components/Error/404/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/Error/404/index.js -------------------------------------------------------------------------------- /react_router_demo/src/components/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/Footer/index.js -------------------------------------------------------------------------------- /react_router_demo/src/components/Form/components/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/Form/components/validation.js -------------------------------------------------------------------------------- /react_router_demo/src/components/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/Home/index.js -------------------------------------------------------------------------------- /react_router_demo/src/components/User/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/User/index.js -------------------------------------------------------------------------------- /react_router_demo/src/components/Users/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/components/Users/index.js -------------------------------------------------------------------------------- /react_router_demo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/index.css -------------------------------------------------------------------------------- /react_router_demo/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/index.js -------------------------------------------------------------------------------- /react_router_demo/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/logo.svg -------------------------------------------------------------------------------- /react_router_demo/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/reportWebVitals.js -------------------------------------------------------------------------------- /react_router_demo/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/src/setupTests.js -------------------------------------------------------------------------------- /react_router_demo/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/react_router_demo/yarn.lock -------------------------------------------------------------------------------- /spend-money-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/.gitignore -------------------------------------------------------------------------------- /spend-money-app/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/.idea/.gitignore -------------------------------------------------------------------------------- /spend-money-app/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /spend-money-app/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/.idea/modules.xml -------------------------------------------------------------------------------- /spend-money-app/.idea/spend-money-app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/.idea/spend-money-app.iml -------------------------------------------------------------------------------- /spend-money-app/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/.idea/vcs.xml -------------------------------------------------------------------------------- /spend-money-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/README.md -------------------------------------------------------------------------------- /spend-money-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/package.json -------------------------------------------------------------------------------- /spend-money-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/public/favicon.ico -------------------------------------------------------------------------------- /spend-money-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/public/index.html -------------------------------------------------------------------------------- /spend-money-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/public/logo192.png -------------------------------------------------------------------------------- /spend-money-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/public/logo512.png -------------------------------------------------------------------------------- /spend-money-app/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/public/manifest.json -------------------------------------------------------------------------------- /spend-money-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/public/robots.txt -------------------------------------------------------------------------------- /spend-money-app/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/App.css -------------------------------------------------------------------------------- /spend-money-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/App.js -------------------------------------------------------------------------------- /spend-money-app/src/components/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/components/Card.jsx -------------------------------------------------------------------------------- /spend-money-app/src/components/CardItem.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/components/CardItem.jsx -------------------------------------------------------------------------------- /spend-money-app/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/components/Footer.jsx -------------------------------------------------------------------------------- /spend-money-app/src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/components/Header.jsx -------------------------------------------------------------------------------- /spend-money-app/src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/helpers.js -------------------------------------------------------------------------------- /spend-money-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/index.css -------------------------------------------------------------------------------- /spend-money-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/index.js -------------------------------------------------------------------------------- /spend-money-app/src/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/src/products.json -------------------------------------------------------------------------------- /spend-money-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/spend-money-app/yarn.lock -------------------------------------------------------------------------------- /weather_forecast/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/.gitignore -------------------------------------------------------------------------------- /weather_forecast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/README.md -------------------------------------------------------------------------------- /weather_forecast/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/package-lock.json -------------------------------------------------------------------------------- /weather_forecast/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/package.json -------------------------------------------------------------------------------- /weather_forecast/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/public/favicon.ico -------------------------------------------------------------------------------- /weather_forecast/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/public/index.html -------------------------------------------------------------------------------- /weather_forecast/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/public/logo192.png -------------------------------------------------------------------------------- /weather_forecast/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/public/logo512.png -------------------------------------------------------------------------------- /weather_forecast/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/public/manifest.json -------------------------------------------------------------------------------- /weather_forecast/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/public/robots.txt -------------------------------------------------------------------------------- /weather_forecast/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/App.css -------------------------------------------------------------------------------- /weather_forecast/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/App.js -------------------------------------------------------------------------------- /weather_forecast/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/App.test.js -------------------------------------------------------------------------------- /weather_forecast/src/components/City/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/components/City/index.js -------------------------------------------------------------------------------- /weather_forecast/src/components/Container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/components/Container/index.js -------------------------------------------------------------------------------- /weather_forecast/src/components/Forecast/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/components/Forecast/index.js -------------------------------------------------------------------------------- /weather_forecast/src/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/context/index.js -------------------------------------------------------------------------------- /weather_forecast/src/data/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/data/data.json -------------------------------------------------------------------------------- /weather_forecast/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/index.css -------------------------------------------------------------------------------- /weather_forecast/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/index.js -------------------------------------------------------------------------------- /weather_forecast/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/logo.svg -------------------------------------------------------------------------------- /weather_forecast/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/reportWebVitals.js -------------------------------------------------------------------------------- /weather_forecast/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/src/setupTests.js -------------------------------------------------------------------------------- /weather_forecast/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harundogdu/react-projects/HEAD/weather_forecast/yarn.lock --------------------------------------------------------------------------------