
Intro to React Components and props
Presentation
•
Computers
•
University
•
Practice Problem
•
Medium
Zh L
Used 2+ times
FREE Resource
14 Slides • 6 Questions
1
Introduction to React Components
Understanding Components and Props
2
What are React components?
React apps are made out of components.
A component is a piece of the UI (user interface) that has its own logic and appearance.
A component can be as small as a button, or as large as an entire page.
https://react.dev/learn/your-first-component
3
How to create a component?
In Command-line interface (CLI), run the following command:
npx generate-react-cli component {MyComponent}
4
Component
Examples:
MyButton
TableOfContent
Profile
Footer
React components are regular JavaScript functions, but their names must start with a capital letter or they won’t work!
5
Component
function MyButton() {
return (
<button>Click</button>
);
}
A React component typically returns JSX. When your JSX markup spans multiple lines, it should be enclosed in parentheses to ensure proper rendering.
6
Using a Component
function MyButton() {
return (
<button>Click</button>
);
}
function App() {
return (
<div>
<MyButton />
</div>
);
}
Now that you’ve defined your component, you can nest it inside other components. It can be utilized multiple times to enhance reusability!
7
Components in different files
You can use export and import to use components in different files
function MyButton() {
return (
<button>I'm a button</button>
);
}
export default MyButton;
import MyButton from './MyButton';
function App() {
return (
<div>
<MyButton />
</div>
);
}
8
Passing Props to a Component
In React, components employ props (short for properties) for inter-component communication.
Parent components can share data with their child components passing data from one component to another.
9
Passing Props to a Component
10
Scenario: Blog Post
Imagine you're creating a blog application, and you want to build a component for displaying individual blog posts.
You want to make this component reusable so that it can display different blog posts with varying titles, authors, and content.
11
Step 1) Passing props to the child component
In this example, we import the BlogPost component and use it within the App component to display a blog post.
The App component passes three props: title, author, and content to the BlogPost component.
import BlogPost from './BlogPost';
function App() {
return (
<div>
<BlogPost
title="How to Use React Props"
author="John Doe"
content="Explore how to use props">
</div>
);
}
12
Step 2) Reading props inside the child component
In this example, we specify that our BlogPost component will receive a prop called props.
We will utilize the data provided by the props object, extracting the `title`, `author`, and `content` from it for displaying in our BlogPost component.
//BlogPost Component
function BlogPost(props) {
return (
<div>
<h2> {props.title} </h2>
<p>By {props.author}</p>
<p>{props.content}</p>
</div>
);
}
export default BlogPost;
13
Scenario: Blog Post
In this scenario, you can use React props to pass the specific information for each blog post to the component.
//BlogPost Component
function BlogPost(props) {
return (
<div>
<h2> {props.title} </h2>
<p>By {props.author}</p>
<p>{props.content}</p>
</div>
);
}
export default BlogPost;
import BlogPost from './BlogPost';
function App() {
return (
<div>
<BlogPost
title="How to Use React Props"
author="John Doe"
content="Explore how to use props" />
<BlogPost
title="Creating Reusable Components"
author="Jane Smith"
content="Learn to reuse Components"/>
</div>);}
export default App;
14
Multiple Choice
What is the primary purpose of React components?
To define and render user interface elements.
To style HTML elements.
To store data.
To manage server-side logic.
15
Multiple Choice
In React, which of the following represents the correct way to pass data from a parent component to a child component?
Using the state property.
Using the parent attribute.
Using the props property.
Using the this keyword.
16
Multiple Choice
What is the key benefit of using props in React components?
To define CSS styles for components.
To manage internal component state.
To access the DOM directly.
To enable communication between parent and child components.
17
Multiple Choice
Which of the following defines a functional React component called HelloWorld that renders "Hello, World!" to the screen?
const HelloWorld = () => {
return (
<div>
<h1>Hello, World!</h1>
</div>
);
}
class HelloWorld extends React.Component {
render() {
return (
<div>
<h1>Hello, World!</h1>
</div>
);
}
}
function HelloWorld() {
return (
<div>
<h1>Hello, World!</h1>
</div>
);
}
<h1>Hello, World!</h1>
18
Multiple Choice
What is the correct way to pass a prop called title with the value "Hello, React!" to a React component named MyComponent?
<MyComponent title="Hello, React!" />
<MyComponent {title="Hello, React!"} />
<MyComponent props={title: "Hello, React!"} />
<MyComponent "Hello, React!" />
19
Multiple Choice
In a React component, how can you access a prop named message and display it within the component?
props.message
const {props.message}
this.props.message
{props.message}
20
Summary
In this lesson, you have learnt:
What are React components
How to create a component
How to nest a component
How to use a component in multiple files
What are React Props
How to use Props to pass data from parent to child components
How to read props inside the child component
Introduction to React Components
Understanding Components and Props
Show answer
Auto Play
Slide 1 / 20
SLIDE
Similar Resources on Wayground
17 questions
Tanggung Jawab Penyelenggara Pendidikan
Presentation
•
University
12 questions
Las IA en la Educación
Presentation
•
University
12 questions
Github and SSH
Presentation
•
University
20 questions
TECHCROMA 2K24 - Code Change Filteration Process.
Presentation
•
University
14 questions
Pengukuran
Presentation
•
12th Grade - University
16 questions
EXERCISES SAMPLING DISTRIBUTIONS
Presentation
•
University
17 questions
Java GUI Unit 9
Presentation
•
University
15 questions
Le futur simple
Presentation
•
University
Popular Resources on Wayground
11 questions
Hallway & Bathroom Expectations
Quiz
•
6th - 8th Grade
10 questions
HCS SCI 03 Summer School Assessment 2
Quiz
•
3rd Grade
11 questions
Home Scope
Quiz
•
7th - 8th Grade
12 questions
2026 TAP Technology in the Classroom
Presentation
•
Professional Development
15 questions
HCS SCI 05 Summer School Assessment 2 Review
Quiz
•
5th Grade
15 questions
HCS SCI 04 Summer School Review 2
Quiz
•
4th Grade
59 questions
Geometry Unit 3 Review
Quiz
•
9th - 12th Grade
14 questions
FAST ELA READING SMAPLE TEST MATERIALS
Passage
•
3rd Grade