SlideShare a Scribd company logo
5
Types of Components
 Functional Components
 Class Components
 Pure Component
 High-Order Components
Most read
8
• Example: HelloWorld.js
// Functional Component Example
import React from 'react';
const HelloWorld =()=> {
return (
<div>
<p>Hello World!</p>
</div>
)
}
export default HelloWorld;
Functional Component
Most read
10
// Class Component Example
import React from 'react';
class ViewHelloWorld extends React.Component {
render() {
return (
<div>
<p>Hello World!</p>
</div>
)
}
}
export default ViewHelloWorld;
Class Component
Most read
Understanding
What is Component?
Types of Components
What is component in reactjs
What is Component?
•Basic meaning of component is “one of several
parts of which something is made”
•In ReactJS one UI page is consists of so many
component(s).
•Components are independent and reusable
code. Building blocks of ReactJS Application.
What is Component?
•Components is like JavaScript functions, but work
individually to return JSX code as elements for UI.
•Parent Component is group of all child
components.
Types of Components
 Functional Components
 Class Components
 Pure Component
 High-Order Components
•Its like a function that takes in props and return JSX.
•JSX stands for JavaScript XML. It is simply a syntax
extension of JavaScript. JSX allows us to write HTML
in React.
•Functional component is also known as a stateless
component because not hold or manage state.
Functional Component
• Example: Hello.js
// Functional Component Example
import React from 'react';
function Hello(props){
return (
<h1>
Welcome to Learn {props.name}
</h1>
)
}
export default Hello;
Functional Component
• Example: HelloWorld.js
// Functional Component Example
import React from 'react';
const HelloWorld =()=> {
return (
<div>
<p>Hello World!</p>
</div>
)
}
export default HelloWorld;
Functional Component
•Declaring this component as Class type.
•Class components are child classes of
React.Component
Class Component
// Class Component Example
import React from 'react';
class ViewHelloWorld extends React.Component {
render() {
return (
<div>
<p>Hello World!</p>
</div>
)
}
}
export default ViewHelloWorld;
Class Component
What is component in reactjs

More Related Content

What's hot (20)

ReactJs
ReactJsReactJs
ReactJs
Sahana Banerjee
 
Introduction to node.js
Introduction to node.jsIntroduction to node.js
Introduction to node.js
Dinesh U
 
React js
React jsReact js
React js
Alireza Akbari
 
Introduction to ReactJS
Introduction to ReactJSIntroduction to ReactJS
Introduction to ReactJS
Knoldus Inc.
 
Angular modules in depth
Angular modules in depthAngular modules in depth
Angular modules in depth
Christoffer Noring
 
React js
React jsReact js
React js
Jai Santhosh
 
Introduction to React JS for beginners
Introduction to React JS for beginners Introduction to React JS for beginners
Introduction to React JS for beginners
Varun Raj
 
Basics of JavaScript
Basics of JavaScriptBasics of JavaScript
Basics of JavaScript
Bala Narayanan
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JS
Arnold Asllani
 
React workshop
React workshopReact workshop
React workshop
Imran Sayed
 
Introduction to Swagger
Introduction to SwaggerIntroduction to Swagger
Introduction to Swagger
Knoldus Inc.
 
ReactJS presentation
ReactJS presentationReactJS presentation
ReactJS presentation
Thanh Tuong
 
Lets make a better react form
Lets make a better react formLets make a better react form
Lets make a better react form
Yao Nien Chung
 
Its time to React.js
Its time to React.jsIts time to React.js
Its time to React.js
Ritesh Mehrotra
 
Angular 8
Angular 8 Angular 8
Angular 8
Sunil OS
 
React-JS.pptx
React-JS.pptxReact-JS.pptx
React-JS.pptx
AnmolPandita7
 
Learn react-js
Learn react-jsLearn react-js
Learn react-js
C...L, NESPRESSO, WAFAASSURANCE, SOFRECOM ORANGE
 
An Introduction to the DOM
An Introduction to the DOMAn Introduction to the DOM
An Introduction to the DOM
Mindy McAdams
 
Express js
Express jsExpress js
Express js
Manav Prasad
 
Typescript ppt
Typescript pptTypescript ppt
Typescript ppt
akhilsreyas
 

Similar to What is component in reactjs (20)

what is functional component
what is functional componentwhat is functional component
what is functional component
manojbkalla
 
What are the components in React?
What are the components in React?What are the components in React?
What are the components in React?
BOSC Tech Labs
 
React - Start learning today
React - Start learning today React - Start learning today
React - Start learning today
Nitin Tyagi
 
reatppt.pptx
reatppt.pptxreatppt.pptx
reatppt.pptx
PSK Technolgies Pvt. Ltd. IT Company Nagpur
 
unit 3_Adv WTAdvanced Web Tecg Design_HTML_CSS_JAVASCRIPT_AJAX_PPT.pdf
unit 3_Adv WTAdvanced Web Tecg Design_HTML_CSS_JAVASCRIPT_AJAX_PPT.pdfunit 3_Adv WTAdvanced Web Tecg Design_HTML_CSS_JAVASCRIPT_AJAX_PPT.pdf
unit 3_Adv WTAdvanced Web Tecg Design_HTML_CSS_JAVASCRIPT_AJAX_PPT.pdf
GauravDwivedi695361
 
react-slides.pptx
react-slides.pptxreact-slides.pptx
react-slides.pptx
DayNightGaMiNg
 
react-slides.pdf
react-slides.pdfreact-slides.pdf
react-slides.pdf
DayNightGaMiNg
 
react-slides.pdf gives information about react library
react-slides.pdf gives information about react libraryreact-slides.pdf gives information about react library
react-slides.pdf gives information about react library
janet736113
 
Intro to React.js
Intro to React.jsIntro to React.js
Intro to React.js
Smita Prasad
 
Learn react by Etietop Demas
Learn react by Etietop DemasLearn react by Etietop Demas
Learn react by Etietop Demas
Etietop Demas
 
TRAINING pptt efwoiefo weoifjoiewjfoifjow.pptx
TRAINING pptt efwoiefo weoifjoiewjfoifjow.pptxTRAINING pptt efwoiefo weoifjoiewjfoifjow.pptx
TRAINING pptt efwoiefo weoifjoiewjfoifjow.pptx
PrathamSharma77833
 
Introduction to React JS.pptx
Introduction to React JS.pptxIntroduction to React JS.pptx
Introduction to React JS.pptx
SHAIKIRFAN715544
 
GDSC NITS Presents Kickstart into ReactJS
GDSC NITS Presents Kickstart into ReactJSGDSC NITS Presents Kickstart into ReactJS
GDSC NITS Presents Kickstart into ReactJS
Pratik Majumdar
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
Karmanjay Verma
 
react-slidlkjfl;kj;dlkjopidfjhopijgpoerjpofjiwoepifjopweifjepoies.pptx
react-slidlkjfl;kj;dlkjopidfjhopijgpoerjpofjiwoepifjopweifjepoies.pptxreact-slidlkjfl;kj;dlkjopidfjhopijgpoerjpofjiwoepifjopweifjepoies.pptx
react-slidlkjfl;kj;dlkjopidfjhopijgpoerjpofjiwoepifjopweifjepoies.pptx
PrathamSharma77833
 
React
ReactReact
React
manii kanta
 
thinking in react slides for students.pptx
thinking in react slides for students.pptxthinking in react slides for students.pptx
thinking in react slides for students.pptx
AneesLarik1
 
Introduction to ReactJS UI Web Dev .pptx
Introduction to ReactJS UI Web Dev .pptxIntroduction to ReactJS UI Web Dev .pptx
Introduction to ReactJS UI Web Dev .pptx
SHAIKIRFAN715544
 
React JS: A Secret Preview
React JS: A Secret PreviewReact JS: A Secret Preview
React JS: A Secret Preview
valuebound
 
React Interview Question PDF By ScholarHat
React Interview Question PDF By ScholarHatReact Interview Question PDF By ScholarHat
React Interview Question PDF By ScholarHat
Scholarhat
 
what is functional component
what is functional componentwhat is functional component
what is functional component
manojbkalla
 
What are the components in React?
What are the components in React?What are the components in React?
What are the components in React?
BOSC Tech Labs
 
React - Start learning today
React - Start learning today React - Start learning today
React - Start learning today
Nitin Tyagi
 
unit 3_Adv WTAdvanced Web Tecg Design_HTML_CSS_JAVASCRIPT_AJAX_PPT.pdf
unit 3_Adv WTAdvanced Web Tecg Design_HTML_CSS_JAVASCRIPT_AJAX_PPT.pdfunit 3_Adv WTAdvanced Web Tecg Design_HTML_CSS_JAVASCRIPT_AJAX_PPT.pdf
unit 3_Adv WTAdvanced Web Tecg Design_HTML_CSS_JAVASCRIPT_AJAX_PPT.pdf
GauravDwivedi695361
 
react-slides.pdf gives information about react library
react-slides.pdf gives information about react libraryreact-slides.pdf gives information about react library
react-slides.pdf gives information about react library
janet736113
 
Learn react by Etietop Demas
Learn react by Etietop DemasLearn react by Etietop Demas
Learn react by Etietop Demas
Etietop Demas
 
TRAINING pptt efwoiefo weoifjoiewjfoifjow.pptx
TRAINING pptt efwoiefo weoifjoiewjfoifjow.pptxTRAINING pptt efwoiefo weoifjoiewjfoifjow.pptx
TRAINING pptt efwoiefo weoifjoiewjfoifjow.pptx
PrathamSharma77833
 
Introduction to React JS.pptx
Introduction to React JS.pptxIntroduction to React JS.pptx
Introduction to React JS.pptx
SHAIKIRFAN715544
 
GDSC NITS Presents Kickstart into ReactJS
GDSC NITS Presents Kickstart into ReactJSGDSC NITS Presents Kickstart into ReactJS
GDSC NITS Presents Kickstart into ReactJS
Pratik Majumdar
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
Karmanjay Verma
 
react-slidlkjfl;kj;dlkjopidfjhopijgpoerjpofjiwoepifjopweifjepoies.pptx
react-slidlkjfl;kj;dlkjopidfjhopijgpoerjpofjiwoepifjopweifjepoies.pptxreact-slidlkjfl;kj;dlkjopidfjhopijgpoerjpofjiwoepifjopweifjepoies.pptx
react-slidlkjfl;kj;dlkjopidfjhopijgpoerjpofjiwoepifjopweifjepoies.pptx
PrathamSharma77833
 
thinking in react slides for students.pptx
thinking in react slides for students.pptxthinking in react slides for students.pptx
thinking in react slides for students.pptx
AneesLarik1
 
Introduction to ReactJS UI Web Dev .pptx
Introduction to ReactJS UI Web Dev .pptxIntroduction to ReactJS UI Web Dev .pptx
Introduction to ReactJS UI Web Dev .pptx
SHAIKIRFAN715544
 
React JS: A Secret Preview
React JS: A Secret PreviewReact JS: A Secret Preview
React JS: A Secret Preview
valuebound
 
React Interview Question PDF By ScholarHat
React Interview Question PDF By ScholarHatReact Interview Question PDF By ScholarHat
React Interview Question PDF By ScholarHat
Scholarhat
 
Ad

More from manojbkalla (18)

VFP-Report-Copy-Data-Environment details
VFP-Report-Copy-Data-Environment detailsVFP-Report-Copy-Data-Environment details
VFP-Report-Copy-Data-Environment details
manojbkalla
 
Generate HTML From DBF using Visual Foxpro
Generate HTML From DBF using Visual FoxproGenerate HTML From DBF using Visual Foxpro
Generate HTML From DBF using Visual Foxpro
manojbkalla
 
VFP Client Server Application Theory Understanding | How to create client ser...
VFP Client Server Application Theory Understanding | How to create client ser...VFP Client Server Application Theory Understanding | How to create client ser...
VFP Client Server Application Theory Understanding | How to create client ser...
manojbkalla
 
VFP LocFile With Sql select query Command | Visual Foxpro locfile function wi...
VFP LocFile With Sql select query Command | Visual Foxpro locfile function wi...VFP LocFile With Sql select query Command | Visual Foxpro locfile function wi...
VFP LocFile With Sql select query Command | Visual Foxpro locfile function wi...
manojbkalla
 
VFP IDX vs CDX, Visual Foxpro Index IDX vs CDX
VFP IDX vs CDX, Visual Foxpro Index IDX vs CDXVFP IDX vs CDX, Visual Foxpro Index IDX vs CDX
VFP IDX vs CDX, Visual Foxpro Index IDX vs CDX
manojbkalla
 
VFP9 Visual Foxpro Filter Commands to work faster with DBF
VFP9 Visual Foxpro Filter Commands to work faster with DBFVFP9 Visual Foxpro Filter Commands to work faster with DBF
VFP9 Visual Foxpro Filter Commands to work faster with DBF
manojbkalla
 
Visual Foxpro / vfp9 auto enable Scrollbar
Visual Foxpro / vfp9 auto enable ScrollbarVisual Foxpro / vfp9 auto enable Scrollbar
Visual Foxpro / vfp9 auto enable Scrollbar
manojbkalla
 
09 Asp.Net MVC Data Validation.pptx
09 Asp.Net MVC Data Validation.pptx09 Asp.Net MVC Data Validation.pptx
09 Asp.Net MVC Data Validation.pptx
manojbkalla
 
Dimension command VFP / Visual Foxpro
Dimension command VFP / Visual FoxproDimension command VFP / Visual Foxpro
Dimension command VFP / Visual Foxpro
manojbkalla
 
Visual Foxpro Array | VFP Array | What is array in visual foxpro
Visual Foxpro Array | VFP Array | What is array in visual foxproVisual Foxpro Array | VFP Array | What is array in visual foxpro
Visual Foxpro Array | VFP Array | What is array in visual foxpro
manojbkalla
 
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptxBC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
manojbkalla
 
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptxBC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
manojbkalla
 
Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping Fo...
Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping Fo...Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping Fo...
Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping Fo...
manojbkalla
 
Ember js installation and create sample project, EmberJS Version check
Ember js installation and create sample project, EmberJS Version checkEmber js installation and create sample project, EmberJS Version check
Ember js installation and create sample project, EmberJS Version check
manojbkalla
 
Visual Foxpro Vfp check internet connection
Visual Foxpro Vfp check internet connectionVisual Foxpro Vfp check internet connection
Visual Foxpro Vfp check internet connection
manojbkalla
 
Vfp9 DBF file , dbf file limitation , field limitation in dbf file
Vfp9 DBF file , dbf file limitation , field limitation in dbf file Vfp9 DBF file , dbf file limitation , field limitation in dbf file
Vfp9 DBF file , dbf file limitation , field limitation in dbf file
manojbkalla
 
Ternary operator in vb.net | ternary operator example vb.net | how to write t...
Ternary operator in vb.net | ternary operator example vb.net | how to write t...Ternary operator in vb.net | ternary operator example vb.net | how to write t...
Ternary operator in vb.net | ternary operator example vb.net | how to write t...
manojbkalla
 
asp.net session management example | using session in asp.net C# | what is se...
asp.net session management example | using session in asp.net C# | what is se...asp.net session management example | using session in asp.net C# | what is se...
asp.net session management example | using session in asp.net C# | what is se...
manojbkalla
 
VFP-Report-Copy-Data-Environment details
VFP-Report-Copy-Data-Environment detailsVFP-Report-Copy-Data-Environment details
VFP-Report-Copy-Data-Environment details
manojbkalla
 
Generate HTML From DBF using Visual Foxpro
Generate HTML From DBF using Visual FoxproGenerate HTML From DBF using Visual Foxpro
Generate HTML From DBF using Visual Foxpro
manojbkalla
 
VFP Client Server Application Theory Understanding | How to create client ser...
VFP Client Server Application Theory Understanding | How to create client ser...VFP Client Server Application Theory Understanding | How to create client ser...
VFP Client Server Application Theory Understanding | How to create client ser...
manojbkalla
 
VFP LocFile With Sql select query Command | Visual Foxpro locfile function wi...
VFP LocFile With Sql select query Command | Visual Foxpro locfile function wi...VFP LocFile With Sql select query Command | Visual Foxpro locfile function wi...
VFP LocFile With Sql select query Command | Visual Foxpro locfile function wi...
manojbkalla
 
VFP IDX vs CDX, Visual Foxpro Index IDX vs CDX
VFP IDX vs CDX, Visual Foxpro Index IDX vs CDXVFP IDX vs CDX, Visual Foxpro Index IDX vs CDX
VFP IDX vs CDX, Visual Foxpro Index IDX vs CDX
manojbkalla
 
VFP9 Visual Foxpro Filter Commands to work faster with DBF
VFP9 Visual Foxpro Filter Commands to work faster with DBFVFP9 Visual Foxpro Filter Commands to work faster with DBF
VFP9 Visual Foxpro Filter Commands to work faster with DBF
manojbkalla
 
Visual Foxpro / vfp9 auto enable Scrollbar
Visual Foxpro / vfp9 auto enable ScrollbarVisual Foxpro / vfp9 auto enable Scrollbar
Visual Foxpro / vfp9 auto enable Scrollbar
manojbkalla
 
09 Asp.Net MVC Data Validation.pptx
09 Asp.Net MVC Data Validation.pptx09 Asp.Net MVC Data Validation.pptx
09 Asp.Net MVC Data Validation.pptx
manojbkalla
 
Dimension command VFP / Visual Foxpro
Dimension command VFP / Visual FoxproDimension command VFP / Visual Foxpro
Dimension command VFP / Visual Foxpro
manojbkalla
 
Visual Foxpro Array | VFP Array | What is array in visual foxpro
Visual Foxpro Array | VFP Array | What is array in visual foxproVisual Foxpro Array | VFP Array | What is array in visual foxpro
Visual Foxpro Array | VFP Array | What is array in visual foxpro
manojbkalla
 
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptxBC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
manojbkalla
 
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptxBC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
BC30290-Local-variable-cannot-have-the-same-name-as-the-function.pptx
manojbkalla
 
Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping Fo...
Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping Fo...Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping Fo...
Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping Fo...
manojbkalla
 
Ember js installation and create sample project, EmberJS Version check
Ember js installation and create sample project, EmberJS Version checkEmber js installation and create sample project, EmberJS Version check
Ember js installation and create sample project, EmberJS Version check
manojbkalla
 
Visual Foxpro Vfp check internet connection
Visual Foxpro Vfp check internet connectionVisual Foxpro Vfp check internet connection
Visual Foxpro Vfp check internet connection
manojbkalla
 
Vfp9 DBF file , dbf file limitation , field limitation in dbf file
Vfp9 DBF file , dbf file limitation , field limitation in dbf file Vfp9 DBF file , dbf file limitation , field limitation in dbf file
Vfp9 DBF file , dbf file limitation , field limitation in dbf file
manojbkalla
 
Ternary operator in vb.net | ternary operator example vb.net | how to write t...
Ternary operator in vb.net | ternary operator example vb.net | how to write t...Ternary operator in vb.net | ternary operator example vb.net | how to write t...
Ternary operator in vb.net | ternary operator example vb.net | how to write t...
manojbkalla
 
asp.net session management example | using session in asp.net C# | what is se...
asp.net session management example | using session in asp.net C# | what is se...asp.net session management example | using session in asp.net C# | what is se...
asp.net session management example | using session in asp.net C# | what is se...
manojbkalla
 
Ad

Recently uploaded (20)

The Future of Open Source Reporting Best Alternatives to Jaspersoft.pdf
The Future of Open Source Reporting Best Alternatives to Jaspersoft.pdfThe Future of Open Source Reporting Best Alternatives to Jaspersoft.pdf
The Future of Open Source Reporting Best Alternatives to Jaspersoft.pdf
Varsha Nayak
 
dp-700 exam questions sample docume .pdf
dp-700 exam questions sample docume .pdfdp-700 exam questions sample docume .pdf
dp-700 exam questions sample docume .pdf
pravkumarbiz
 
COBOL Programming with VSCode - IBM Certificate
COBOL Programming with VSCode - IBM CertificateCOBOL Programming with VSCode - IBM Certificate
COBOL Programming with VSCode - IBM Certificate
VICTOR MAESTRE RAMIREZ
 
Software Engineering Process, Notation & Tools Introduction - Part 4
Software Engineering Process, Notation & Tools Introduction - Part 4Software Engineering Process, Notation & Tools Introduction - Part 4
Software Engineering Process, Notation & Tools Introduction - Part 4
Gaurav Sharma
 
Best Inbound Call Tracking Software for Small Businesses
Best Inbound Call Tracking Software for Small BusinessesBest Inbound Call Tracking Software for Small Businesses
Best Inbound Call Tracking Software for Small Businesses
TheTelephony
 
Revolutionize Your Insurance Workflow with Claims Management Software
Revolutionize Your Insurance Workflow with Claims Management SoftwareRevolutionize Your Insurance Workflow with Claims Management Software
Revolutionize Your Insurance Workflow with Claims Management Software
Insurance Tech Services
 
Automating Map Production With FME and Python
Automating Map Production With FME and PythonAutomating Map Production With FME and Python
Automating Map Production With FME and Python
Safe Software
 
OpenTelemetry 101 Cloud Native Barcelona
OpenTelemetry 101 Cloud Native BarcelonaOpenTelemetry 101 Cloud Native Barcelona
OpenTelemetry 101 Cloud Native Barcelona
Imma Valls Bernaus
 
Top 11 Fleet Management Software Providers in 2025 (2).pdf
Top 11 Fleet Management Software Providers in 2025 (2).pdfTop 11 Fleet Management Software Providers in 2025 (2).pdf
Top 11 Fleet Management Software Providers in 2025 (2).pdf
Trackobit
 
Top 5 Task Management Software to Boost Productivity in 2025
Top 5 Task Management Software to Boost Productivity in 2025Top 5 Task Management Software to Boost Productivity in 2025
Top 5 Task Management Software to Boost Productivity in 2025
Orangescrum
 
Porting Qt 5 QML Modules to Qt 6 Webinar
Porting Qt 5 QML Modules to Qt 6 WebinarPorting Qt 5 QML Modules to Qt 6 Webinar
Porting Qt 5 QML Modules to Qt 6 Webinar
ICS
 
Shell Skill Tree - LabEx Certification (LabEx)
Shell Skill Tree - LabEx Certification (LabEx)Shell Skill Tree - LabEx Certification (LabEx)
Shell Skill Tree - LabEx Certification (LabEx)
VICTOR MAESTRE RAMIREZ
 
14 Years of Developing nCine - An Open Source 2D Game Framework
14 Years of Developing nCine - An Open Source 2D Game Framework14 Years of Developing nCine - An Open Source 2D Game Framework
14 Years of Developing nCine - An Open Source 2D Game Framework
Angelo Theodorou
 
Essentials of Resource Planning in a Downturn
Essentials of Resource Planning in a DownturnEssentials of Resource Planning in a Downturn
Essentials of Resource Planning in a Downturn
OnePlan Solutions
 
Software Testing & it’s types (DevOps)
Software  Testing & it’s  types (DevOps)Software  Testing & it’s  types (DevOps)
Software Testing & it’s types (DevOps)
S Pranav (Deepu)
 
Neuralink Templateeeeeeeeeeeeeeeeeeeeeeeeee
Neuralink TemplateeeeeeeeeeeeeeeeeeeeeeeeeeNeuralink Templateeeeeeeeeeeeeeeeeeeeeeeeee
Neuralink Templateeeeeeeeeeeeeeeeeeeeeeeeee
alexandernoetzold
 
Marketo & Dynamics can be Most Excellent to Each Other – The Sequel
Marketo & Dynamics can be Most Excellent to Each Other – The SequelMarketo & Dynamics can be Most Excellent to Each Other – The Sequel
Marketo & Dynamics can be Most Excellent to Each Other – The Sequel
BradBedford3
 
DevOps for AI: running LLMs in production with Kubernetes and KubeFlow
DevOps for AI: running LLMs in production with Kubernetes and KubeFlowDevOps for AI: running LLMs in production with Kubernetes and KubeFlow
DevOps for AI: running LLMs in production with Kubernetes and KubeFlow
Aarno Aukia
 
FME for Climate Data: Turning Big Data into Actionable Insights
FME for Climate Data: Turning Big Data into Actionable InsightsFME for Climate Data: Turning Big Data into Actionable Insights
FME for Climate Data: Turning Big Data into Actionable Insights
Safe Software
 
Who will create the languages of the future?
Who will create the languages of the future?Who will create the languages of the future?
Who will create the languages of the future?
Jordi Cabot
 
The Future of Open Source Reporting Best Alternatives to Jaspersoft.pdf
The Future of Open Source Reporting Best Alternatives to Jaspersoft.pdfThe Future of Open Source Reporting Best Alternatives to Jaspersoft.pdf
The Future of Open Source Reporting Best Alternatives to Jaspersoft.pdf
Varsha Nayak
 
dp-700 exam questions sample docume .pdf
dp-700 exam questions sample docume .pdfdp-700 exam questions sample docume .pdf
dp-700 exam questions sample docume .pdf
pravkumarbiz
 
COBOL Programming with VSCode - IBM Certificate
COBOL Programming with VSCode - IBM CertificateCOBOL Programming with VSCode - IBM Certificate
COBOL Programming with VSCode - IBM Certificate
VICTOR MAESTRE RAMIREZ
 
Software Engineering Process, Notation & Tools Introduction - Part 4
Software Engineering Process, Notation & Tools Introduction - Part 4Software Engineering Process, Notation & Tools Introduction - Part 4
Software Engineering Process, Notation & Tools Introduction - Part 4
Gaurav Sharma
 
Best Inbound Call Tracking Software for Small Businesses
Best Inbound Call Tracking Software for Small BusinessesBest Inbound Call Tracking Software for Small Businesses
Best Inbound Call Tracking Software for Small Businesses
TheTelephony
 
Revolutionize Your Insurance Workflow with Claims Management Software
Revolutionize Your Insurance Workflow with Claims Management SoftwareRevolutionize Your Insurance Workflow with Claims Management Software
Revolutionize Your Insurance Workflow with Claims Management Software
Insurance Tech Services
 
Automating Map Production With FME and Python
Automating Map Production With FME and PythonAutomating Map Production With FME and Python
Automating Map Production With FME and Python
Safe Software
 
OpenTelemetry 101 Cloud Native Barcelona
OpenTelemetry 101 Cloud Native BarcelonaOpenTelemetry 101 Cloud Native Barcelona
OpenTelemetry 101 Cloud Native Barcelona
Imma Valls Bernaus
 
Top 11 Fleet Management Software Providers in 2025 (2).pdf
Top 11 Fleet Management Software Providers in 2025 (2).pdfTop 11 Fleet Management Software Providers in 2025 (2).pdf
Top 11 Fleet Management Software Providers in 2025 (2).pdf
Trackobit
 
Top 5 Task Management Software to Boost Productivity in 2025
Top 5 Task Management Software to Boost Productivity in 2025Top 5 Task Management Software to Boost Productivity in 2025
Top 5 Task Management Software to Boost Productivity in 2025
Orangescrum
 
Porting Qt 5 QML Modules to Qt 6 Webinar
Porting Qt 5 QML Modules to Qt 6 WebinarPorting Qt 5 QML Modules to Qt 6 Webinar
Porting Qt 5 QML Modules to Qt 6 Webinar
ICS
 
Shell Skill Tree - LabEx Certification (LabEx)
Shell Skill Tree - LabEx Certification (LabEx)Shell Skill Tree - LabEx Certification (LabEx)
Shell Skill Tree - LabEx Certification (LabEx)
VICTOR MAESTRE RAMIREZ
 
14 Years of Developing nCine - An Open Source 2D Game Framework
14 Years of Developing nCine - An Open Source 2D Game Framework14 Years of Developing nCine - An Open Source 2D Game Framework
14 Years of Developing nCine - An Open Source 2D Game Framework
Angelo Theodorou
 
Essentials of Resource Planning in a Downturn
Essentials of Resource Planning in a DownturnEssentials of Resource Planning in a Downturn
Essentials of Resource Planning in a Downturn
OnePlan Solutions
 
Software Testing & it’s types (DevOps)
Software  Testing & it’s  types (DevOps)Software  Testing & it’s  types (DevOps)
Software Testing & it’s types (DevOps)
S Pranav (Deepu)
 
Neuralink Templateeeeeeeeeeeeeeeeeeeeeeeeee
Neuralink TemplateeeeeeeeeeeeeeeeeeeeeeeeeeNeuralink Templateeeeeeeeeeeeeeeeeeeeeeeeee
Neuralink Templateeeeeeeeeeeeeeeeeeeeeeeeee
alexandernoetzold
 
Marketo & Dynamics can be Most Excellent to Each Other – The Sequel
Marketo & Dynamics can be Most Excellent to Each Other – The SequelMarketo & Dynamics can be Most Excellent to Each Other – The Sequel
Marketo & Dynamics can be Most Excellent to Each Other – The Sequel
BradBedford3
 
DevOps for AI: running LLMs in production with Kubernetes and KubeFlow
DevOps for AI: running LLMs in production with Kubernetes and KubeFlowDevOps for AI: running LLMs in production with Kubernetes and KubeFlow
DevOps for AI: running LLMs in production with Kubernetes and KubeFlow
Aarno Aukia
 
FME for Climate Data: Turning Big Data into Actionable Insights
FME for Climate Data: Turning Big Data into Actionable InsightsFME for Climate Data: Turning Big Data into Actionable Insights
FME for Climate Data: Turning Big Data into Actionable Insights
Safe Software
 
Who will create the languages of the future?
Who will create the languages of the future?Who will create the languages of the future?
Who will create the languages of the future?
Jordi Cabot
 

What is component in reactjs

  • 3. What is Component? •Basic meaning of component is “one of several parts of which something is made” •In ReactJS one UI page is consists of so many component(s). •Components are independent and reusable code. Building blocks of ReactJS Application.
  • 4. What is Component? •Components is like JavaScript functions, but work individually to return JSX code as elements for UI. •Parent Component is group of all child components.
  • 5. Types of Components  Functional Components  Class Components  Pure Component  High-Order Components
  • 6. •Its like a function that takes in props and return JSX. •JSX stands for JavaScript XML. It is simply a syntax extension of JavaScript. JSX allows us to write HTML in React. •Functional component is also known as a stateless component because not hold or manage state. Functional Component
  • 7. • Example: Hello.js // Functional Component Example import React from 'react'; function Hello(props){ return ( <h1> Welcome to Learn {props.name} </h1> ) } export default Hello; Functional Component
  • 8. • Example: HelloWorld.js // Functional Component Example import React from 'react'; const HelloWorld =()=> { return ( <div> <p>Hello World!</p> </div> ) } export default HelloWorld; Functional Component
  • 9. •Declaring this component as Class type. •Class components are child classes of React.Component Class Component
  • 10. // Class Component Example import React from 'react'; class ViewHelloWorld extends React.Component { render() { return ( <div> <p>Hello World!</p> </div> ) } } export default ViewHelloWorld; Class Component