ReactJS Tutorial - 7 - Functional Component - With Live Coding Example 🔥🔥

preview_player
Показать описание
ReactJS Tutorial - 7 - Functional Component - With Live Coding Example 🔥🔥

1)React is an open source javascript library for building user interfaces.
2)React is a project created and maintained by Facebook.
React has more than a 100 thousand stars on GitHub and a huge community behind it.
3)React has become increasingly popular among developers and is also one of the most sought out skill-sets by companies right now.
4)React has a component based architecture. This lets you break down your application into small encapsulated parts which can then be composed to make more complex UI.
5)React is declarative.
6)React will make it painless for you to create complex UIs by abstracting away the difficult parts.
7)React will handle efficiently updating and rendering just the right components in your application when your data changes.
8)DOM updates which is one of the more expensive operations is handled gracefully in React.

Family ❤
Our Family - 125 ,000
Like Aim – 2500
Subscribers Aim- 200,000

Subscribe to stay tuned to more fun and informative content, consider liking the video in order to vouch for quality 🤗!!

Follow me on:
╔═╦╗╔╦╗╔═╦═╦╦╦╦╗╔═╗
║╚╣║║║╚╣╚╣╔╣╔╣║╚╣═╣
╠╗║╚╝║║╠╗║╚╣║║║║║═╣
╚═╩══╩═╩═╩═╩╝╚╩═╩═╝

Technical Suneja Shorts⭐

⭐ My Telegram Group Link:

⭐ What is CI/CD? 🤔

⭐ My Recent Interview Experience on Javascript

⭐ Front End Interview Series (Modern JavaScript ES6 Tutorial by Technical Suneja )

⭐ Free Resouces
2) ES6 full course ►
3) Git and GitHub Training - Zero to Hero ►
4) ReactJS Tutorial for Beginners to Advanced ►

⭐ Want Webhosting service ?
If you are planning to host your website in a very decent amount you can contact us on the given numbers.
Contact Details :
1. +91-9990131528
2. +91-8529119425

I believe that this vlog will help you to understand better in terms of career growth.

Put your comments and share your experience with us if you like this vlog. Also if you have some suggestions then please suggest them in the comment box.

⭐ Support vs Development Jobs? Projects? What to choose

⭐ Latest IT Vlogs :

⭐ Wednesday Episodes By Technical Suneja

⭐ Coding Stuff :

⭐ ReactJS Tutorial For Beginners. :

⭐ CTC v/s IN HAND SALARY | Huge Packages Explained🤔 GOOGLE, MICROSOFT, Facebook! 🔥

⭐ Top 5 Programming languages for 2021

⭐ Best Top 5 Frontend Frameworks of 2021 for Web Development

⭐ 10 Generic steps to becoming Javascript Developer | Frontend & Backend Both🔥

⭐ Best LinkedIn Tips for Job seekers in 2021 - Proper Utilisation of LinkedIn 🔥

⭐ My Thoughts on Web Development & Mobile App Development - Which is better?

⭐ Competitive Programming vs Software Development – Where Should I Invest My Time? 🔥

⭐ My Thoughts on Mean Stack Developer - Are you looking for a FullStack Developer?🔥

⭐ My Thoughts on Full Stack Developer - Perfect Path 🔥🔥

reactjs tutorial, reactjs tutorial for beginners, reactjs tutorial in hindi, reactjs projects, reactjs basics for beginners, reactjs tutorial in hindi technical suneja, reactjs technical suneja, react js by technical suneja, react js tutorial, react js code with harry, technical suneja web development, technical suneja react js, technical suneja react, react tutorial in hindi, react tutorial in hindi, react tutorial beginner to advanced, react tutorial hindi

#reactjs #webDevelopment #technicalSuneja
Рекомендации по теме
Комментарии
Автор

LIKED SIR JI..LOVE YOU SIR I LEARNT A LOT FROM YOU...FABULOUS VIDEOS UPLOADED BY YOU SIR THANKYOU SO MUCH SIR..:)

AYStudiosDelhi
Автор

Give this video a thumbs up if you liked it. Give this video a thumbs down if you disliked it. Your feedback will improve the quality of upcoming tutorials.

TechnicalSuneja
Автор

Functional Components

1)Functional components are basic JavaScript functions. These are typically arrow functions but can also be created with the regular function keyword.
2)Sometimes referred to as “dumb” or “stateless” components as they simply accept data and display them in some form; that is they are mainly responsible for rendering UI.
3)React lifecycle methods (for example, componentDidMount) cannot be used in functional components.
4)There is no render method used in functional components.
5)These are mainly responsible for UI and are typically presentational only (For example, a 6)Button component).
7)Functional components can accept and use props.
8)Functional components should be favored if you do not need to make use of React state.

TechnicalSuneja
Автор

First i like then i watch...bcz i know quality is always super hot

DGXGAMING
Автор

Nice explanation about functional components

sheelchandradubey
Автор

Bahot hi easy tarike se samjaya. Please react ko php ke saath use kijiye.

ajayrabari
Автор

I am following your react videos, It is really blowing my mind dude. I as a beginner in react is following your course it is really well structured easy to understand and giving me peace. Keep it up bro .

ajaywadhwa
Автор

Can you make video without using div for the same

girishsaundarkar
Автор

Sir which is best Functional vs Class Component, ,, should learn class component and its concept worth in future

muhammadfaizan
Автор

Sir @5:12 when you said yaha pr hamne ulta kr dia.. usme
import React from 'react'; ye Caps React hai kya vo compulory hai ki *React* hi likhein?

ojhamanvi
Автор

Please increase your voice volume similar with intro background music.

FerdousAnam
Автор

Which is better sir react js or angular js??

prashantsoni
Автор

Sir y starting ki high sound beat hta do bahut jyda distributing h ..plz

RohitSharma-nyoq
Автор

sir header.js me import React form 'react' ka kya use hai

safeerkhan
Автор

why module name should be same as file name ? its good to have but not necessary to have whatever we export should have same name as file name.

azharkhan
Автор

Bro I'm full stack web developer and freelancer. Have skill set of mongo, mysql, .net and .netcore, angular, codeigniter but create playlist with react mini project from scratch just like our codeigniter series.
I have client n project where requirement is web app and mobile app for the same.
So my request is that pelase create react mini project from scratch with step by step like session, file upload, jwt auth, api for crud and react native for mobile app
Teach one simple package that includes web and mobile app both toutorial at one place. I want to learn both from your channel replay me if your doing for all user just like me ???

aamirmultani
Автор

App.js file:-

import React from 'react';
import {header} from './Components/Header';

class App1 extends React.Component
{
render(){
return(
<div className="App1">
<header/>
</div>
);
}
}
export default App1;

Header.js file:-

import React from 'react';

export const header=()=>{
return <h1>Hello World</h1>
}

This code is not giving me any output. getting blank screen while running. Components folder was created the same way you have created.
can you please help?

siddharthsahu
Автор

Bro, please remove the background music. It is so irritating, it may lead to get less subscribers to you.

jeevanb