├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── images │ ├── allupakoida.jpg │ ├── chola.jpg │ ├── corn.jpg │ ├── maggi.jpg │ ├── momo.jpg │ ├── nonvegthali.jpg │ ├── paubhaji.jpg │ ├── pizza.jpg │ ├── puri.jpg │ ├── rajmarice.jpg │ ├── rotiwithmeat.jpg │ ├── samosa.jpg │ ├── sweet.jpg │ ├── todo.svg │ └── vegthali.jpg ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── components │ ├── todoreact │ │ ├── style.css │ │ └── todo.js │ └── weather │ │ ├── style.css │ │ ├── temp.js │ │ └── weathercard.js ├── index.css ├── index.js ├── logo.svg ├── reportWebVitals.js └── setupTests.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/images/allupakoida.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/allupakoida.jpg -------------------------------------------------------------------------------- /public/images/chola.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/chola.jpg -------------------------------------------------------------------------------- /public/images/corn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/corn.jpg -------------------------------------------------------------------------------- /public/images/maggi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/maggi.jpg -------------------------------------------------------------------------------- /public/images/momo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/momo.jpg -------------------------------------------------------------------------------- /public/images/nonvegthali.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/nonvegthali.jpg -------------------------------------------------------------------------------- /public/images/paubhaji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/paubhaji.jpg -------------------------------------------------------------------------------- /public/images/pizza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/pizza.jpg -------------------------------------------------------------------------------- /public/images/puri.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/puri.jpg -------------------------------------------------------------------------------- /public/images/rajmarice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/rajmarice.jpg -------------------------------------------------------------------------------- /public/images/rotiwithmeat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/rotiwithmeat.jpg -------------------------------------------------------------------------------- /public/images/samosa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/samosa.jpg -------------------------------------------------------------------------------- /public/images/sweet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/sweet.jpg -------------------------------------------------------------------------------- /public/images/todo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/todo.svg -------------------------------------------------------------------------------- /public/images/vegthali.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/images/vegthali.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/components/todoreact/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/components/todoreact/style.css -------------------------------------------------------------------------------- /src/components/todoreact/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/components/todoreact/todo.js -------------------------------------------------------------------------------- /src/components/weather/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/components/weather/style.css -------------------------------------------------------------------------------- /src/components/weather/temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/components/weather/temp.js -------------------------------------------------------------------------------- /src/components/weather/weathercard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/components/weather/weathercard.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thapatechnical/reactjsByThapaTechnical/HEAD/yarn.lock --------------------------------------------------------------------------------