Skip to main content

Posts

Showing posts from September, 2021

15+ Top Web Development Projects Ideas 2021

 Top Web Development Projects Ideas  This rundown of web project thoughts is appropriate for amateurs and middle of the road level students. These web project thoughts will get you moving with every one of the items of common sense you need to prevail in your profession as a web engineer.  Further, in case you're searching for web project thoughts for definite year, this rundown ought to get you rolling. In this way, right away, we should bounce straight into some web project thoughts that will fortify your base and permit you to scale the stepping stool.  1. One-page design  This venture plans to reproduce a pixel amazing plan and make a one-page responsive design. This is additionally a novice project that permits freshers to test their recently gained information and expertise level.  You can utilize the Conquer format to fabricate this task. This format comes stacked with a large group of special designs. Additionally, it brings before you a progression...

How to Create your own Weather App With React.js 2021

React.JS Weather App 2021 For create the a weather you should have some pre-requirements. Like API and Basic Knowledge. Create React App              open vs code and then open the terminal and then type the code:                 npx Create-react-app appName         2. Then go to src folder and open the APP.js and delete the content inside the Div.   Live project:- https://gaurav19790.github.io/weather-app/ SOURCE CODE:- https://github.com/gaurav19790/weather-app      APP.js import React , { useState } from 'react' ;import React, { useState } from 'react'; import { fetchWeather } from './api/fetchWeather'; import './App.css'; const App = () => { const [query, setQuery] = useState(''); const [weather, setWeather] = useState({}); const search = async (e) => { if(e.key === 'Enter') { const data =...